创建与数据库的动态 odbc 连接以进行报告
需要创建与多个数据库的 ODBC 连接,这将允许最终用户指定提取报告的唯一日期。最终用户当前每天将数据编译到唯一的数据库 (xxxx.date) 中,我们希望允许非技术最终用户选择日期并检索最新的数据库。这怎么能做到呢?
Need to create an ODBC connection to multiple databases which will allow end user to specify a unique date to pull report. The end user is currently compiling data daily into unique databases (xxxx.date) and we want to allow a non-technical end user to select the date and retrieve the most current database. How can this be done?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用连接字符串。应该有可用于连接到数据库的连接字符串。示例来自 http://connectionstrings.com/postgre-sql#p51
只需看看如何将字符串连接到你的DBMS看起来像并且使用它。
有一个关于如何使用 Python 连接字符串(包括文件名)到 MS Access 数据库的示例:
You can use connect string. There should be connect string you can use to connect to your database. Example from http://connectionstrings.com/postgre-sql#p51
Just look how connect string to you DBMS looks like and use it.
There is example on how to use connect string including file name to MS Access database with Python: