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

vltsax25  于 2021-06-20  发布在  Mysql
关注(0)|答案(1)|浏览(257)

一个是默认的,另一个是第二个数据库,我只需要在少数控制器来维持通过系统来的命令。这是密码,亲爱的 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);`
 }

现在在同一个控制器中的一个函数中使用第二个db

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

const ci_version='3.1.7';

qvsjd97n

qvsjd97n1#

希望这能帮助您:
首先你要定义一个 public 或者 private 变量 $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();

相关问题