Subject Re: [IBO] Limiting the potential maximum size of sets via where clauses
Author Svein Erling Tysvaer
At 19:23 09.07.2003 +0200, you wrote:
>Can i control how many rows i want fetch from a query and then when my
>user push a button continue fetching next sets of rows with IBOQuery ?

Just adding to Helens answer. Firebird do accept

SELECT FIRST <number> SKIP <number>

syntax, so if you issue SELECT FIRST 10 you get the first ten rows, and
SELECT FIRST 10 SKIP 10 gets you the next ten. Though if you do something
like this, make sure your transactions are properly set up, so that the
second query have the same visible records as the first one (otherwise you
risk one record not showing or showing twice).

Set