Search found 1 match

by lonely01
05.10.2006, 16:15
Forum: 6.1.5
Topic: Problem with RecordCount
Replies: 5
Views: 4630

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;...