创建与数据库的动态 odbc 连接以进行报告

发布于 2024-11-19 02:11:41 字数 117 浏览 3 评论 0原文

需要创建与多个数据库的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

半葬歌 2024-11-26 02:11:41

您可以使用连接字符串。应该有可用于连接到数据库的连接字符串。示例来自 http://connectionstrings.com/postgre-sql#p51

Driver={PostgreSQL UNICODE};Server=IP address;Port=5432;Database=myDataBase;Uid=myUsername;Pwd=myPassword;

只需看看如何将字符串连接到你的DBMS看起来像并且使用它。

有一个关于如何使用 Python 连接字符串(包括文件名)到 MS Access 数据库的示例:

db = pyodbc.connect('Driver={Microsoft Access Driver (*.mdb)};Dbq=Nwind.mdb;Uid=;Pwd=;')
c = db.cursor()
rs = c.execute("SELECT CategoryName FROM Categories")
...

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

Driver={PostgreSQL UNICODE};Server=IP address;Port=5432;Database=myDataBase;Uid=myUsername;Pwd=myPassword;

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:

db = pyodbc.connect('Driver={Microsoft Access Driver (*.mdb)};Dbq=Nwind.mdb;Uid=;Pwd=;')
c = db.cursor()
rs = c.execute("SELECT CategoryName FROM Categories")
...
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文