Yii basic 模板支持鏈接多數據庫

1.首先修改db配置文件,修改格式以下:php

return [ 'db' => [ 'class' => 'yii\db\Connection', 'dsn' => 'mysql:host=localhost;dbname=zjj', 'username' => 'root', 'password' => 'root', 'charset' => 'utf8', ], 'db_new' => [ 'class' => 'yii\db\Connection', 'dsn' => 'mysql:host=localhost;dbname=new_db', 'username' => 'root', 'password' => 'root', 'charset' => 'utf8', ], // Schema cache options (for production environment) //'enableSchemaCache' => true, //'schemaCacheDuration' => 60, //'schemaCache' => 'cache', ];

 

 


2.修改完成後,防止報錯,須要在web.php裏增長以下配置:mysql

//多個數據庫鏈接須要合併輸出 $config['components'] = array_merge($config['components'],$db); return $config;

 

3.修改完成後報錯信息應該就不會有了,下面就能夠使用多數據獲取數據:web

   1.使用原生查詢sql

$sql = "select * from article where id = 5214"; $new_db = Yii::$app->db_new->createCommand($sql)->queryAll();

 

 2.使用gii生成model數據庫

點擊生成就能夠了。注意:db_new 要和db配置文件裏面的保持一致;到這裏就完成多配置了!app

4.生成的model能夠和以前的model不同,區別就是下面的區別:yii

    /** * @return \yii\db\Connection the database connection used by this AR class. */ public static function getDb() { return Yii::$app->get('db_new'); }

多了一行返回數據庫信息this

相關文章
相關標籤/搜索