1
vote
Is there a DBGrid component that can handle large datasets fast?
What you need to do with that amount of records in memory?
Memory and Speed problems are sure.
You must filter, sort, group,... (minimize the result count) BEFORE visualize the result …
1
vote
Why does ADO Next record processing slow down in Delphi?
Additionally, you can change the CursorType property of your Access Component (TADOTable/TADOQuery/...).
Try ctOpenForwardOnly to imporve performance; It' …
