Board index » delphi » how to create an index for a query

how to create an index for a query

how can I list the data after executing an sql statement 20 by 20 if I have
lot's of data. I mean I want to show next 20 group of data after pressing
the next button on browser
 

Re:how to create an index for a query


First off: Browsing applications are _not_ a good thing with C/S
databases.
If you really need it, probably a Stored Procedure (with some
parameters) is probably the best solution today.  Performance may be
BAD.  LIMIT/TOP functionality may appear in Interbase or Firebord
later.  More convenience, but performance may still be less than
stellar.

Regards,
Aage J.

Quote
Kemal wrote:
> how can I list the data after executing an sql statement 20 by 20 if I have
> lot's of data. I mean I want to show next 20 group of data after pressing
> the next button on browser

Other Threads