如何使用 Delphi 打开 Access 97 数据文件
我需要读取包含大约 400K 记录的 Access 97 文件中的数据。
我想使用 TurboDelphi Pro 或 dBASE SE。
我只有Access 2003。最简单的方法是什么
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
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您决定使用 TurboDelphi,则可以使用 dbGo 选项卡 上的 ADOConnection 组件。
配置连接字符串时,请使用 Jet 驱动程序并指向您的 .mdb 文件。然后使用 ADO 控件 获取数据。
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.
我不太熟悉 TurboDelphi Pro 或 dBASE SE,但使用 Delphi / C++ Builder,您可以使用 ODBC 连接打开表。
在管理工具/数据源中创建 ODBC DSN。然后,您应该能够在项目中使用数据对象来打开表并访问数据。
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.