CodeIgniter多个数据库连接未从第二个数据库获取数据

时间:2018-07-31 14:26:17

标签: php mysql codeigniter codeigniter-3 codeigniter-database

一个是默认数据库,另一个是第二个数据库,我只需要几个控制器即可维护通过系统发出的订单。这是代码,我的database.php文件如下:

这是我的配置:

`$db['default'] = array(
'dsn'   => '',
'hostname' => 'localhost',
'username' => 'root',
'password' => '',
'database' => 'carbiz',
'dbdriver' => 'mysqli',
'dbprefix' => 'web_',
'pconnect' => FALSE,
'db_debug' => (ENVIRONMENT !== 'production'),
'cache_on' => FALSE,
'cachedir' => '',
'char_set' => 'utf8',
'dbcollat' => 'utf8_general_ci',
'swap_pre' => '',
'encrypt' => FALSE,
'compress' => FALSE,
'stricton' => FALSE,
'failover' => array(),
'save_queries' => TRUE
);
$db['abcd'] = array(
'dsn'   => '',
'hostname' => 'localhost',
'username' => 'root',
'password' => '',
'database' => 'sale2',
'dbdriver' => 'mysqli',
'dbprefix' => 'web_',
'pconnect' => FALSE,
'db_debug' => (ENVIRONMENT !== 'production'),
'cache_on' => FALSE,
'cachedir' => '',
'char_set' => 'utf8',
'dbcollat' => 'utf8_general_ci',
'swap_pre' => '',
'encrypt' => FALSE,
'compress' => FALSE,
'stricton' => FALSE,
'failover' => array(),
'save_queries' => TRUE
);`

这是我的控制器

public function __construct()
 {
    parent::__construct();
    $this->load->model('admin_model');
    $this->otherdb = $this->load->database('abcd', TRUE);`
 }

现在在同一控制器中使用第二个数据库的一个功能

function add_scondary()
 {   
     $val=$this->otherdb->select('title')->get('products');
     print_r("here");
     print_r($val); 
 }

const CI_VERSION ='3.1.7';

1 个答案:

答案 0 :(得分:0)

希望这对您有帮助:

首先,您必须像这样定义publicprivate变量$otherdb

public $otherdb; 
public function __construct()
{
   parent::__construct();
   $this->otherdb = $this->load->database('abcd', TRUE);
}  


function add_scondary()
 {    
     $data = $this->otherdb->get('products')->result();
     print_r(data);
 }

更好的方法:使用具有相同连接的不同数据库:

如果只需要在同一连接上使用其他数据库,则无需创建单独的数据库配置。您可以在需要时切换到其他数据库,例如:

$this->db->db_select('sale2');
$data['abcd'] = $this->db->get('products')->result();