尽管存在Yii框架数据库连接,我是否可以建立备用数据库连接

时间:2014-04-11 12:53:06

标签: php yii mysqli external dbconnection

我们在使用config.php文件中定义的mysql数据库连接的yii框架中进行应用程序。 但由于某种原因,我们想连接到其他服务器mysql db。我可以这样做(不使用现有的连接):

public function init_db() 
{ 
    $db_handler = mysqli_connect('http://xxx.xxx.xxx.xxx', 'name', 'password', 'db_name');
    $db_handler->set_charset('utf8');

    // check connection 
    if (mysqli_connect_errno()) {
        throw new Exception ("Error connecting to DB : " . mysqli_connect_error()  );
    }              

    // set autocommit to off 
    mysqli_autocommit($db_handler, FALSE);

    mysqli_query ($db_handler, "set time_zone='Europe/Minsk'");

    return $db_handler;
}

当我尝试它时,我收到错误: mysqli_connect(): php_network_getaddresses: getaddrinfo failed: hostname nor servname provided, or not known

在此行$db_handler = mysqli_connect('http://xxx.xxx.xxx.xxx', 'name', 'password', 'db_name');

是否有任何解决方法,黑客短时连接从外部服务器(而不是localhost)获取一些数据?

更新

我刚刚遇到这个tread。 然而,当我尝试:

$connection=new CDbConnection($dsn,$username,$password);
$connection->active=true;

yii发布CDbException:

CDbConnection failed to open the DB connection: could not find driver

1 个答案:

答案 0 :(得分:1)

在您的配置文件中,只需添加其他连接设置:

    'db' => array(
        'connectionString' => 'mysql:host=127.0.0.1;dbname=test',
        ....
    ),
    'otherDb' => array(
        'connectionString' => 'mysql:host=127.0.0.1;dbname=test2',
        ....
    ),

并使用它像Yii :: app() - > otherDb