如何使用 Ruby 和 win32ole 查询 MS Access 数据库表并将信息导出到 Excel?
我是 Ruby 新手,我正在尝试查询现有的 MS Access 数据库以获取报告信息。我希望将此信息存储在 Excel 文件中。我该怎么做?
I'm new to Ruby, and I'm trying to query an existing MS Access database for information for a report. I want this information stored in an Excel file. How would I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
尝试以下其中一项:
OLE:
ODBC:
Try one of these:
OLE:
ODBC:
你为什么要这样做?您可以直接从 Excel 查询数据库。查看此教程。
Why do you want to do this? You can simply query your db from Excel directly. Check out this tutorial.
正如 Johannes 所说,您可以从 Excel 查询数据库。
但是,如果您更喜欢使用 Ruby...
您可以找到有关使用 Ruby 查询 Access/Jet 数据库的信息 此处。
有关使用 Ruby 自动化 Excel 的大量信息可以在此处找到。
大卫
As Johannes said, you can query the database from Excel.
If, however, you would prefer to work with Ruby...
You can find info on querying Access/Jet databases with Ruby here.
Lots of info on automating Excel with Ruby can be found here.
David