I have a table with about 500.000 rows. I need to do searches like: SELECT * FROM names WHERE name LIKE 'abc%'. And display them in customgridview.
But, even with an index, it's too slow on Android. How can I make it faster? Can sqlite be forced to internally perform binary search on the text column?
But, even with an index, it's too slow on Android. How can I make it faster? Can sqlite be forced to internally perform binary search on the text column?