Re: [sqlite] paged query in sqlite

2008-03-25 Thread John Stanton
Do a SELECT, read 100 rows, then read another 100. Your program controls it. Shailesh Madhukar Birari wrote: > Does Sqlite support Paged query? what I mean is on doing select* it should > return me first, say 100, rows and then subsequent calls should return me > succes

Re: [sqlite] paged query in sqlite

2008-03-25 Thread Emilio Platzer
another aproach is to use OFFSET and LIMIT in your select queries: select * from table limit 100 offset 1 then select * from table limit 100 offset 101 then select * from table limit 100 offset 201 etc. Shailesh Madhukar Birari escribió: > Does Sqlite support Paged query? what I m

Re: [sqlite] paged query in sqlite

2008-03-25 Thread Igor Tandetnik
"Shailesh Madhukar Birari" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Does Sqlite support Paged query? what I mean is on doing select* it > should return me first, say 100, rows and then subsequent calls > should return me successive rows. Do a

[sqlite] paged query in sqlite

2008-03-25 Thread Shailesh Madhukar Birari
Does Sqlite support Paged query? what I mean is on doing select* it should return me first, say 100, rows and then subsequent calls should return me successive rows. Is this supported in sqlite:? If yes, what are the interfaces? If not, is there an easy way to add this functionality using existing