Zend Framework 使用 IBM 的 DB2 并在 application.ini 文件中创建标准连接

发布于 2024-12-06 08:27:09 字数 139 浏览 2 评论 0原文

DB2 使用 XML 文件作为数据库表的基础,而我一直很难找到任何好的参考资料或通过 application.ini 文件创建到数据库的标准连接的示例。早期版本中有一些使用不同连接器的示例,但我找不到使用 pdo_ibm 适配器的示例。 任何帮助或指导将不胜感激。

DB2 uses XML files as its basis for database tables, and I have been having a very difficult time finding any good references or examples of creating a standard connection to the database via the application.ini file. There are some examples from earlier versions using different connectors, but non that I could find that used the pdo_ibm adapter.
Any help or direction would be greatly appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

顾北清歌寒 2024-12-13 08:27:09

应与任何其他数据库服务器相同:

resources.db.adapter = "PDO_IBM"
resources.db.params.host = "your.database.host"
resources.db.params.dbname = "database_name"
resources.db.params.username = "username"
resources.db.params.password = "password"

Should be the same as any other database server:

resources.db.adapter = "PDO_IBM"
resources.db.params.host = "your.database.host"
resources.db.params.dbname = "database_name"
resources.db.params.username = "username"
resources.db.params.password = "password"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文