使用 Zend Framework 列出数据库

发布于 2024-11-28 06:20:04 字数 40 浏览 1 评论 0原文

是否可以使用 Zend_Db 或 ZF 的任何其他组件列出数据库?

Is it possible to list databases using Zend_Db or any other component from ZF ?

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

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

发布评论

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

评论(2

南巷近海 2024-12-05 06:20:04

没有 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.

时间海 2024-12-05 06:20:04

我假设您使用 multiDb 并希望获得应用程序中连接的所有数据库的列表。 ZF 不应该用于检测服务器/网络上的数据库或应用程序中未包含的数据库。

要获取当前与 multiDb 连接的所有数据库,您可以在控制器中使用以下命令

$bootstrap = $this->getInvokeArg('bootstrap');
$resource = $bootstrap->getPluginResource('multidb');

$resource instanceof Zend_Application_Resource_Multidb;
$options = $resource->getOptions();
// getOptions is a little misleading because it actually is an array with all your db configs

请注意 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

$bootstrap = $this->getInvokeArg('bootstrap');
$resource = $bootstrap->getPluginResource('multidb');

$resource instanceof Zend_Application_Resource_Multidb;
$options = $resource->getOptions();
// getOptions is a little misleading because it actually is an array with all your db configs

Note that the documentation for Zend_Db_Table mentions the registry for storing additional databases which is another option and not covered with multiDb

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