首先在 config/database.php 中设置两个数据库连接。默认情况下,您将看到以下内容。
$active_group = 'default';
$active_record = TRUE;
$db['default']['hostname'] = '';
$db['default']['username'] = '';
$db['default']['password'] = '';
$db['default']['database'] = '';
$db['default']['dbdriver'] = 'mysql';
$db['default']['dbprefix'] = '';
$db['default']['pconnect'] = TRUE;
$db['default']['db_debug'] = TRUE;
$db['default']['cache_on'] = FALSE;
$db['default']['cachedir'] = '';
$db['default']['char_set'] = 'utf8';
$db['default']['dbcollat'] = 'utf8_general_ci';
$db['default']['swap_pre'] = '';
$db['default']['autoinit'] = TRUE;
$db['default']['stricton'] = FALSE;
添加另一个数据库连接设置为 $db['another_db'] 如下
$db['another_db']['hostname'] = '';
$db['another_db']['username'] = '';
$db['another_db']['password'] = '';
$db['another_db']['database'] = '';
$db['another_db']['dbdriver'] = 'mysql';
$db['another_db']['dbprefix'] = '';
$db['another_db']['pconnect'] = TRUE;
$db['another_db']['db_debug'] = TRUE;
$db['another_db']['cache_on'] = FALSE;
$db['another_db']['cachedir'] = '';
$db['another_db']['char_set'] = 'utf8';
$db['another_db']['dbcollat'] = 'utf8_general_ci';
$db['another_db']['swap_pre'] = '';
$db['another_db']['autoinit'] = TRUE;
$db['another_db']['stricton'] = FALSE;
然后对于默认数据库,您只需在加载数据库后进行正常查询。
$this->load->database();
$this->db->query($sql);
$this->db->result();
用于加载 another_db 并进行查询,
$another_db= $this->load->database('another_db', TRUE);
$another_db->query($sql);
$another_db->result();