I have a question about browsing a large amount of records with ADO.
I have a client that want to browse a table with lot of records.
The problem is that running the query to get the recordset is taking already 3 .5 seconds.
What I can do is setting a LIMIT op 1000 records, and fetching the next 1000 when I get to the buttom of the browse.
HeidiSQL is doing this by doing
- Code: Select all Expand view
- SELECT * FROM .. ORDER BY .. ASC LIMIT 1000;
and then when reaching the bottom
- Code: Select all Expand view
- SELECT * FROM .. ORDER BY .. ASC LIMIT 1000,1000;
How can I do this, with xbrowse()