在codeigniter 3中切换数据库

时间:2017-10-05 11:15:49

标签: php mysql codeigniter codeigniter-3

我正在尝试为不同的组织/用户使用/更改数据库。在master数据库中,我有不同组织的db_name,我使用以下代码在会话中存储db_name。

$condition = "subdomain =" . "'" . $data['subdomain'] . "' AND " . "status =1";

$this->db->select('id, db_name');
$this->db->from('sublogin');
$this->db->where($condition);
$this->db->limit(1);

$db_name = $this->db->get()->row()->db_name;

// SET db_name for session
$this->session->set_userdata('db_name', $db_name);

在另一个模型中,切换数据库

$db_name = $this->session->userdata('db_name');
$this->db->db_select($db_name); 

它在localhost上工作,但在我的实时服务器上却没有,它会出错:

  

发生数据库错误   错误号码:1146   表' db694230824。用户'不存在

我试图回显当前的数据库,它说数据库没有改变。

echo $this->db->database;
die(); 

1 个答案:

答案 0 :(得分:3)

1解决方案。

您可以使用以下多个数据库:

$this->db = $this->load->database('default', TRUE);
$this->anotherDb = $this->load->database('anotherDb ', TRUE);

或者,如果您指定了codeigniter超级对象:

public function __construct($params) {

   $this->CI = & get_instance();
   $this->CI->db = $this->CI->load->database('default', TRUE);
   $this->CI->anotherDb = $this->CI->load->database('anotherDb', TRUE);
}

2解决方案

它工作得更早,并非100%确定它是否仍然有效,但看起来这个错误仍然存​​在于CI中。 只需在/system/database/DB_driver.php文件中的simple_query函数中添加一行代码:

public function simple_query($sql)
{
    if ( ! $this->conn_id)
    {
        $this->initialize();
    }

    $this->db_select(); // add this
    return $this->_execute($sql);
}

它应该允许你在这样的模型中使用其他数据库:

$this->anotherDb = $this->load->database('anotherDb', true);

不要忘记在/application/config/database.php文件中添加其他数据库连接设置,方法与默认数据库类似:

$db['default'] = array(
    'dsn'   => '',
    'hostname' => 'localhost',
    ...
);

$db['anotherDb'] = array(
    'dsn'   => '',
    'hostname' => 'localhost',
    ...
);

CodeIgniter » Docs » Database Reference » Connecting to your Database