从 Excel 导入数据
如何使用 Delphi 7 将数据从 Excel 导入 Paradox 数据库?
How can I to import data from Excel into a Paradox database using Delphi 7?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何使用 Delphi 7 将数据从 Excel 导入 Paradox 数据库?
How can I to import data from Excel into a Paradox database using Delphi 7?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
好吧,如果您的问题标记为 Delphi 7,我假设您有 BDE。这将使您能够在 Delphi 中完成整个过程。
您可以修改并使用这个未经测试的代码(您将需要添加异常处理):
Well, if you have the question tagged as Delphi 7 I assume you have BDE. This will enable you to do the whole process in Delphi.
You can modify and use this untested code (you will need to add the exception handling):
Excel 中的 CSV 然后将 CSV 导入 Paradox DB 怎么样?
您还可以尝试从 Excel 导出 XML,然后以编程方式将 XML 加载到 Padox DB 中。
What about CSV from Excel then import the CSV into Paradox DB?
You may also try exporting XML from Excel, then load the XML into Padadox DB programmatically.
使用 Delphi 7 中的 OLEDB Provider 和 ADO 组件来实现此目的。
做起来应该很简单,你可以通过 SQL 查询来使用 Excel 查询。
使用TADO组件获取数据,然后使用TQuery等BDE组件将数据导入到悖论表。
Use the OLEDB Provider and ADO component in Delphi 7 to achieve this.
It should be simple to do, and you can work with Excel querying via SQL queries.
Use the TADO component to get the data and then use BDE components like TQuery to import the data to the Paradox table.
这个工具 SMImport 说它可以做到这一点。虽然他们要 50 美元,但你可以下载免费试用版。
This tool SMImport says it can do it. While they want $50 for it, you can download a free trial version.