Mysql
 sql >> Database >  >> RDS >> Mysql

Connessione al database dinamico di Codeigniter

Dovresti fornire tutte le informazioni sul database in application/config/database.php´

Normalmente, dovresti impostare il gruppo di database predefinito, in questo modo:

$db['default']['hostname'] = "localhost";
$db['default']['username'] = "root";
$db['default']['password'] = "";
$db['default']['database'] = "database_name";
$db['default']['dbdriver'] = "mysql";
$db['default']['dbprefix'] = "";
$db['default']['pconnect'] = TRUE;
$db['default']['db_debug'] = FALSE;
$db['default']['cache_on'] = FALSE;
$db['default']['cachedir'] = "";
$db['default']['char_set'] = "utf8";
$db['default']['dbcollat'] = "utf8_general_ci";
$db['default']['swap_pre'] = "";
$db['default']['autoinit'] = TRUE;
$db['default']['stricton'] = FALSE;

Si noti che le informazioni di accesso e le impostazioni sono fornite nell'array denominato $db['default'] .

È quindi possibile aggiungere un altro database in un nuovo array, chiamiamolo 'anotherdb'.

$db['anotherdb']['hostname'] = "localhost";
$db['anotherdb']['username'] = "root";
$db['anotherdb']['password'] = "";
$db['anotherdb']['database'] = "another_database_name";
$db['anotherdb']['dbdriver'] = "mysql";
$db['anotherdb']['dbprefix'] = "";
$db['anotherdb']['pconnect'] = TRUE;
$db['anotherdb']['db_debug'] = FALSE;
$db['anotherdb']['cache_on'] = FALSE;
$db['anotherdb']['cachedir'] = "";
$db['anotherdb']['char_set'] = "utf8";
$db['anotherdb']['dbcollat'] = "utf8_general_ci";
$db['anotherdb']['swap_pre'] = "";
$db['anotherdb']['autoinit'] = TRUE;
$db['anotherdb']['stricton'] = FALSE;

Ora se vuoi usare il secondo database, vai su

$DB_another = $this->load->database('anotherdb', TRUE); 

e poi, invece di $this->db->foo() , tu $DB_another->foo()

e puoi estenderlo a più gruppi come questo

 $DB2 = $this->load->database('anotherdb1', TRUE); 
 $DB3 = $this->load->database('anotherdb2', TRUE); 

Per i dettagli dai un'occhiata qui:http://ellislab.com/codeigniter/ user-guide/database/connecting.html