Search found 1 match
- 05.10.2006, 16:15
- Forum: 6.1.5
- Topic: Problem with RecordCount
- Replies: 5
- Views: 4662
Problem with RecordCount
Hi folks, check this out. Take a "medium" query(~70.000 Records) and try this. query.open; while not query.eof do begin query.next; end; On my machine this loop(not the time to open the query) takes 2 seconds. Then, with only one little modification: query.open; var_x := query.recordcount;...