我有一些(模型)方法,它们分别连接到不同的数据库。
我从database.php创建了两个数据库配置,将它们加载到模型中并创建了两个方法;一个连接到DB1,另一个连接到DB2。 (以下示例代码)
当我用 $ DB1 或 $ DB2 替换 $ this-&gt; db 时,我收到如下错误:< / p>
Message: Undefined variable: DB1 // or DB2
否则,我收到此错误:
Message: Undefined property: Home::$db
我尝试在每个方法中包含 $ DB = $ this-&gt; load-&gt;数据库(&#34; database_name&#34;,TRUE); 以连接到特定数据库。 有效,但我知道在重复使用该方法时,一次又一次地连接它并不是一个好习惯。
我真的很困惑。
以下是我的代码:
database.php中
$db['db1'] = array(
'dsn' => '',
'hostname' => 'localhost',
'username' => 'root',
'password' => '',
'database' => 'db1',
'dbdriver' => 'mysqli',
'dbprefix' => '',
'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['db2'] = array(
'dsn' => '',
'hostname' => 'other_host',
'username' => 'root',
'password' => '',
'database' => 'db2',
'dbdriver' => 'mssql',
'dbprefix' => '',
'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
);
型号:
function __construct()
{
parent::__construct();
$DB1= $this->load->database("db1", TRUE);
$DB2= $this->load->database("db2", TRUE);
}
public function get_from_db1($id)
{
// $query = $this->db->get_where("my_table1",array("ID"=>$id));
$query = $DB1->get_where("my_table1",array("ID"=>$id));
return $query->row_array();
}
public function get_from_db2($id)
{
// $query = $this->db->get_where("my_table2",array("ID"=>$id));
$query = $DB2->get_where("my_table2",array("ID"=>$id));
return $query->row_array();
}
此外:
请帮忙!
先谢谢你们!
答案 0 :(得分:3)
您需要在构造函数之外定义变量
public $DB1;
public $DB2;
在构造函数中将其称为
function __construct()
{
parent::__construct();
$this->DB1= $this->load->database("db1", TRUE);
$this->DB2= $this->load->database("db2", TRUE);
}
在你的功能中
public function get_from_db1($id)
{
// $query = $this->db->get_where("my_table1",array("ID"=>$id));
$query = $this->DB1->get_where("my_table1", array("ID" => $id));
return $query->row_array();
}
public function get_from_db2($id)
{
// $query = $this->db->get_where("my_table2",array("ID"=>$id));
$query = $this->DB2->get_where("my_table2", array("ID" => $id));
return $query->row_array();
}
答案 1 :(得分:1)
你是否在autoload.php中加载了主数据库类:
$autoload['libraries'] = array('database');
您需要加载此库,以便可以使用$db
属性。