最佳答案
我需要在列表视图中显示 SQLite 结果。
第一个选项是使用 LIMIT 子句:
SELECT * FROM Table LIMIT 100, 5000
It returns records 5001 to 5100. The problem is that internally SQLite "reads" the first 5000 records and it is not too efficient.
当有很多记录时,分页的最佳方法是什么?