Codeigniter - best way to use two different database

99封情书 提交于 2019-11-29 14:34:27

问题


Does someone knows the best practice for using 2 different database in my application?

I need to store data in both databases which are differently located (host,username,password , all does change).

I'm planning to create models as usual, and in construct set the db host,name,pass etc.


回答1:


I'm not sure if you call this "best" way, but a way, as described in the tutorial, is this,

in the database file, you have the default configuration, a part of which is:

$db['default']['hostname'] = "localhost";
$db['default']['username'] = "user";
$db['default']['password'] = "database";
$db['default']['database'] = "db1";

now you can create another group, say we call it group1 and we want it to have everything the same as the default database settings except for the name, so you can do

$db['group1']=$db['default'];
$db['group1']['database']="db2";

then, when you want to use the second database, just go

$DB2 = $this->load->database('group1', TRUE); 

and then, instead of $this->db->foo() , you will do $DB2->foo()

alternatively (as suggested in comments by sbaaaang), you can do $this->db=$DB2; to keep everything the same

and you can extend this to multiple groups like this

 $DB1 = $this->load->database('group1', TRUE); 
 $DB2 = $this->load->database('group2', TRUE); 
 ...
 $DBn = $this->load->database('groupn', TRUE); 



回答2:


Well i would like just to write here my solution cause i've used less code i think:

in database.php i set the database groups so for ex:

$database['default']['dbname'] = 'db1';
$database['second_db']['dbname'] = 'db2';

then in models i used the constructor to switch to database i want to use like this:

//use db1
function __construct()
    {
        // Call the Model constructor
        parent::__construct();
         $this->load->database('default',true);
    }
//use db2
function __construct()
    {
        // Call the Model constructor
        parent::__construct();
         $this->load->database('second_db',true);
    }

if anyone would like to show more solutions do that please! These are just my two cents.




回答3:


I read that

$db['default']['pconnect'] = FALSE;

must be false for these things to work. Please correct me if I'm wrong. For ALL multiple databases you use, it has to be off. I don't know if this is a good solution.




回答4:


Tried this, and it works:

$db['otherdb'] = array_merge($db['primarydb'], array(

    'database' => 'otherdbname'

));


来源:https://stackoverflow.com/questions/12767603/codeigniter-best-way-to-use-two-different-database

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!