I need to read the data in an Access 97 file that has about 400K records.
I would like to use either TurboDelphi Pro or dBASE SE.
I only have Access 2003. What is the easiest way of proceeding
I need to read the data in an Access 97 file that has about 400K records.
I would like to use either TurboDelphi Pro or dBASE SE.
I only have Access 2003. What is the easiest way of proceeding
I'm not specifically familiar with TurboDelphi Pro or dBASE SE, but with Delphi / C++ Builder you can open the tables using an ODBC connection.
Create an ODBC DSN in Administrative Tools / Data Sources. Then, you should be able to use data objects in your project to open the tables and access the data.
If you decide to go with TurboDelphi, you can use the ADOConnection component on the dbGo tab.
When you Configure the connection string, use the Jet driver and point to your .mdb file. Then use the ADO controls to get at the data.