sql: sqlite: server side paging sql: sqlite: server side paging sqlite sqlite

sql: sqlite: server side paging


Maybe you could use the LIMIT… OFFET… capability of SQLite.

Taken from the select syntax documentation:

Instead of a separate OFFSET clause, the LIMIT clause may specify two scalar expressions separated by a comma. In this case, the first expression is used as the OFFSET expression and the second as the LIMIT expression. This is counter-intuitive, as when using the OFFSET clause the second of the two expressions is the OFFSET and the first the LIMIT. This is intentional - it maximizes compatibility with other SQL database systems.