标签: php codeigniter-2
我已经确定了database.php:
database.php
$db['default']['dbprefix'] = 'm_';
假设我想使用另一个前缀,例如以c_开头的表前缀而不是默认数据库前缀m_,我该怎么做?
c_
m_
我目前的代码是:
$data['username'] = 'test_username'; $this->db->insert('c_my_table`, $data);
任何解决方案?