使用 Zend Framework 列出数据库
是否可以使用 Zend_Db 或 ZF 的任何其他组件列出数据库?
Is it possible to list databases using Zend_Db or any other component from ZF ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
没有
Zend_Db->showDatabases()
命令,但您可以执行查询“SHOW DATABASES”(假设是 mysql)并循环结果。There is not a
Zend_Db->showDatabases()
command, but you can execute the query 'SHOW DATABASES' (assuming mysql) and loop through the results.我假设您使用 multiDb 并希望获得应用程序中连接的所有数据库的列表。 ZF 不应该用于检测服务器/网络上的数据库或应用程序中未包含的数据库。
要获取当前与 multiDb 连接的所有数据库,您可以在控制器中使用以下命令
请注意 Zend_Db_Table 提到了用于存储附加数据库的注册表,这是另一个选项,multiDb 未涵盖
I assume you use multiDb and want a list of all your databases hooked up in your application. Detecting databases on your server/network or ones not included in your application is nothing ZF should be used for.
For getting all your databases currently connected with multiDb you can use the following in a controller
Note that the documentation for Zend_Db_Table mentions the registry for storing additional databases which is another option and not covered with multiDb