laravel – 动态切换数据库连接

前端之家收集整理的这篇文章主要介绍了laravel – 动态切换数据库连接前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
对于多个控制台命令,我需要更改数据库,以便所有有力的命令和查询在正确的数据库(和服务器)上运行.

我看到了几个解决方案,最简单的似乎是像这样改变配置:

$new_connection = [
        'driver'    => 'MysqL','host'      => '127.0.0.1','database'  => 'test_db','username'  => 'test','password'  => 'test','charset'   => 'utf8','collation' => 'utf8_general_ci','prefix'    => '','strict'    => false
];

config(['database.connections.MysqL' => $new_connection]);
DB::purge('MysqL');

唯一的问题(我注意到)是当我尝试做交易时,更具体地说,当我在Codeception中的验收测试中进行交易时,它们根本不起作用.

我使用的命令是:

DB::connection()->beginTransaction(); // inside the _before function

DB::connection()->rollBack(); // inside the _after function

解决方法

您必须创建2个不同的连接

http://fideloper.com/laravel-multiple-database-connections
https://laravel.com/docs/5.1/database#accessing-connections

return array(
    'default' => 'MysqL','connections' => array(

        # Our primary database connection
        'MysqL' => array(
          'driver'    => 'MysqL','strict'    => false
        ),# Our secondary database connection
        'MysqL2' => array(
          'driver'    => 'MysqL','database'  => 'test_db_2',),);

现在当你想查询你必须传递你需要的连接

$users = DB::connection('MysqL2')->select(...);

由于默认值是声明为MysqL,因此您可以省略它.

猜你在找的MsSQL相关文章