How to prevent Delphi ADO from loading the entire table into memory?

前端 未结 7 2166
后悔当初
后悔当初 2021-02-09 01:22

I am not a Delphi programmer, but I I got an old Delphi 7 application that I need to fix and it is using ADO.

The database table (MS Accesss) contains +100,000 rows and

相关标签:
7条回答
  • 2021-02-09 01:56

    Dont make the adotable active on startup and turning it true later is one way but still not really gonna help....use a adodataset and populate that rather as needed during runtime with your connection text. Only relevant data will be retrieved making it much faster.

    0 讨论(0)
提交回复
热议问题