What is the fastest way to load 10000 rows from the SQLite database? What is the fastest way to load 10000 rows from the SQLite database? sqlite sqlite

What is the fastest way to load 10000 rows from the SQLite database?


First i advice you to load only the first 1000 rows, and then Use AsyncTask to load more.

You can find response here http://www.javasrilankansupport.com/2012/11/asynctask-android-example-asynctask-in.html

Hope this help