我正在使用ActiveRecord,我需要切换数据库。当我登录时,我选择了一个数据库。 数据库是相同的模式。 我试过了:
$connections = array(
'1' => 'mysql://root:pass@localhost/db1;charset=utf8',
'2' => 'mysql://root:pass@localhost/db2;charset=utf8',
'test' => 'mysql://root:password@localhost/database_name'
);
$current_db = $_SESSION['db'] ? $_SESSION['db'] : '2';
ActiveRecord\Config::initialize(function($cfg) use ($connections, $current_db)
{
$cfg->set_model_directory(MODEL_PATH);
$cfg->set_connections($connections);
$cfg->set_default_connection($current_db);
});
db'2'是默认值。但是不起作用。
答案 0 :(得分:0)
我通常使用这样的方法;
$all = new SomeModel(); // class of ActiveRecord\Model
$all->table()->class->setStaticPropertyValue("connection","test"); //test - defined in cfg
$all->table()->reestablish_connection();
//then use it as usual.
$all_data = $all->all();
答案 1 :(得分:0)
我找到了一个用于切换数据库here
的优秀解决方案的链接 修改强>:
我在我的模型中定义了一个名为switch_connection
的方法
public static function switch_connection($name) {
$cfg = ActiveRecord\Config::instance();
$valid = $cfg->get_connections();
if ( ! isset($valid[$name])) {
throw new ActiveRecord\DatabaseException('Invalid connection specified');
}
// Get the name of the current connection
$old = self::$connection;
$cm = ActiveRecord\ConnectionManager::instance();
$conn = $cm::get_connection($name);
static::table()->conn = $conn;
return $old;
}
如果您在链接中看到,请注意我添加了static
关键字。我认为这是更好的主意。