How i can force an yii2 module to use a specific c

2019-08-02 12:24发布

on a module I have add a component named db where i put, like the main Yii component, the data for database connection, I need in my module use everytime the db specified in his configuration for all models and not the main database connection, how I can do this?

1条回答
劳资没心,怎么记你
2楼-- · 2019-08-02 12:50

You have several way eg. using a separated configuration in app/config/main.php eg adding a specific dbMyMod to component config

return [
// ...
'components' => [
    // ...
    'db' => [
        'class' => 'yii\db\Connection',
        'dsn' => 'mysql:host=localhost;dbname=example',
        'username' => 'root',
        'password' => '',
        'charset' => 'utf8',
    ],
    'dbMyMod ' => [
        'class' => 'yii\db\Connection',
        'dsn' => 'mysql:host=hostForMudle;dbname=module_db_name',
        'username' => 'user_module_name',
        'password' => 'password',
        'charset' => 'utf8',
    ],

],

or one way that not require a static configuration in app/confing

could be based on a module function that return a proper db connection

public function myModuleDbCon()
{
   $myDbCon = new yii\db\Connection([
           'dsn' => 'mysql:host=localhost;dbname=example',
           'username' => 'root',
           'password' => '',
           'charset' => 'utf8',
    ]);
    return myDbConn;

}

then in you module you can retrive the module db connection

aDbConn = Yii::$app->getModule('my_module_name')->myModuleClass->myModuleDbCon();

.

 $command = $aDbConn->createCommand('SELECT * FROM myTable');
 $result= $command->queryAll();
查看更多
登录 后发表回答