【发布时间】:2017-01-18 05:16:58
【问题描述】:
我使用了多个数据库连接。
main.php
'components'=>array(
'db'=>array(
'connectionString' => 'mysql:host=localhost;dbname=testdrive',
'emulatePrepare' => true,
'username' => 'root',
'password' => '',
'charset' => 'utf8',
),
'db2'=>array(
'connectionString' => 'mysql:host=remotelocalhost;dbname=seconddb',
'emulatePrepare' => true,
'username' => 'root',
'password' => '',
'charset' => 'utf8',
'class'=>'CDbConnection'
),
),
)
当模型类使用第二个数据库连接(远程数据库-db2)时记录不更新
请帮我解决这个问题。
模型类
class Modelclass extends CActiveRecord
{
// model class code
}
【问题讨论】:
-
你是如何使用连接的.....你能不能再贴一些代码
-
我终于找到了解决方案。谢谢 lakshay。
标签: php yii yii-components yii1.x