在 Symfony 1.2 中,如何从 Propel 中的 database.yml 文件获取当前数据库名称?

发布于 2024-09-01 18:53:48 字数 151 浏览 9 评论 0 原文

我有一个需要运行的原始 sql 查询,但数据库名称在每个环境中都会发生变化(live:db、dev db_test)

我需要从databases.yml 文件中获取当前数据库名称。

如何获取当前数据库名称?

我正在使用 Propel ORM

I have a raw sql query I need to run, but the database name changes in each environment (live: db, dev db_test)

I need to get the current database name from the databases.yml file.

How can I get just the current database name?

I am using the Propel ORM

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

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

发布评论

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

评论(2

南薇 2024-09-08 18:53:48

最初我认为通过 sfPropelDatabase::getConfiguration() 非常容易,但它返回一个数组。因此,我必须解析结果才能获取数据,我认为可能有比这更好的方法:

$propel_config = sfPropelDatabase::getConfiguration();
preg_match('/dbname=([^;]+);/', $propel_config['propel']['datasources']['propel']['connection']['dsn'], $matches);
echo $matches[1];

有人有更好的方法吗?

Initially I thought this would be pretty easy via sfPropelDatabase::getConfiguration() but that returns an array. As such, I had to parse the result to get the data, and I think there's probably a better way than this:

$propel_config = sfPropelDatabase::getConfiguration();
preg_match('/dbname=([^;]+);/', $propel_config['propel']['datasources']['propel']['connection']['dsn'], $matches);
echo $matches[1];

Anyone got anything better?

浮世清欢 2024-09-08 18:53:48

以下代码在 Propel2 中运行 - 本质上与接受的答案相同。

$mgr = \Propel\Runtime\Propel::getConnectionManager($connectionId);
$dsn = $mgr->getConfiguration()['dsn'];
preg_match('/dbname=([^;]+)/', $dsn, $matches);
echo $matches[1];

The following code works in Propel2 -- essentially the same as the accepted answer.

$mgr = \Propel\Runtime\Propel::getConnectionManager($connectionId);
$dsn = $mgr->getConfiguration()['dsn'];
preg_match('/dbname=([^;]+)/', $dsn, $matches);
echo $matches[1];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文