代码点火器 2 +具有多个数据库连接的原则 2

发布于 2024-11-27 23:13:18 字数 146 浏览 2 评论 0原文

我想知道是否可以让 CodeIgniter 2 与 Doctrine 2 一起使用多个数据库连接。

我目前使用 CodeIgniter 2 和 Doctrine 2 来处理 1 个数据库,但是是否可以处理多个数据库?

如果是这样,如何实现这一点?

I was wondering if is possible to have CodeIgniter 2 with Doctrine 2 with multiple database connections.

I currently got CodeIgniter 2 and Doctrine 2 to work with 1 database, but is it possible to do multiple database?

If so, how can this be accomplished?

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

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

发布评论

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

评论(1

是你 2024-12-04 23:13:18

我不确定您是否可以在两个数据库直接交互的情况下执行此操作。 (跨数据库联接/等..)

但是,在您的学说加载中,您可能会遇到类似的情况:

// Database connection information
$connectionOptions = array(
    'driver' => 'pdo_mysql',
    'user' =>     $db['default']['username'],
    'password' => $db['default']['password'],
    'host' =>     $db['default']['hostname'],
    'dbname' =>   $db['default']['database']
);

// Create EntityManager
$this->em = EntityManager::create($connectionOptions, $doctrine_config);

当您只需使用另一个数据库(也许使用单独的学说配置)配置第二个实体管理器时:

// Database connection information
$connectionOptions2 = array(
    'driver' => 'pdo_mysql',
    'user' =>     $db['other']['username'],
    'password' => $db['other']['password'],
    'host' =>     $db['other']['hostname'],
    'dbname' =>   $db['other']['database']
);

// Create EntityManager
$this->emOther = EntityManager::create($connectionOptions2, $doctrine_config2);

I am unsure if you can do this where the two databases interact directly. (Cross-Database Joins/etc..)

However in your load-up for doctrine you probably have something along the lines of this:

// Database connection information
$connectionOptions = array(
    'driver' => 'pdo_mysql',
    'user' =>     $db['default']['username'],
    'password' => $db['default']['password'],
    'host' =>     $db['default']['hostname'],
    'dbname' =>   $db['default']['database']
);

// Create EntityManager
$this->em = EntityManager::create($connectionOptions, $doctrine_config);

When You would just configure a second entity manager with the other db, perhaps with a seperate doctrine-config:

// Database connection information
$connectionOptions2 = array(
    'driver' => 'pdo_mysql',
    'user' =>     $db['other']['username'],
    'password' => $db['other']['password'],
    'host' =>     $db['other']['hostname'],
    'dbname' =>   $db['other']['database']
);

// Create EntityManager
$this->emOther = EntityManager::create($connectionOptions2, $doctrine_config2);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文