Welcome Guest, Not a member yet? Register   Sign In
Multiple Database Connections
#7

[eluser]crazypolecat[/eluser]
You can do this dynamically in CodeIgniter. All you need to know is what the name is of the database you wish to connect to. Let's assume that your database name is stored in a variable called $user_db. Connecting to that database could look like this using CodeIgniter.
Code:
$config_db['hostname'] = "localhost";
$config_db['username'] = $username;
$config_db['password'] = $password;
$config_db['database'] = $user_db;
$config_db['dbdriver'] = "mysql";
$config_db['dbprefix'] = "";
$config_db['pconnect'] = TRUE;
$config_db['db_debug'] = TRUE;
$config_db['cache_on'] = FALSE;
$config_db['cachedir'] = "";
$config_db['char_set'] = "utf8";
$config_db['dbcollat'] = "utf8_general_ci";
                
$this->load->database($config_db);

There are other parameters you can pass in the latter load function, which you can find in the user guide (http://ellislab.com/codeigniter/user-gui...cting.html).

I hope this helps.


Messages In This Thread
Multiple Database Connections - by El Forum - 08-23-2010, 03:44 AM
Multiple Database Connections - by El Forum - 08-23-2010, 03:52 AM
Multiple Database Connections - by El Forum - 08-23-2010, 03:58 AM
Multiple Database Connections - by El Forum - 08-23-2010, 04:17 AM
Multiple Database Connections - by El Forum - 09-09-2010, 06:50 PM
Multiple Database Connections - by El Forum - 01-19-2011, 05:27 PM
Multiple Database Connections - by El Forum - 01-19-2011, 06:49 PM
Multiple Database Connections - by El Forum - 01-19-2011, 07:35 PM
Multiple Database Connections - by El Forum - 01-19-2011, 07:51 PM
Multiple Database Connections - by El Forum - 05-01-2012, 04:07 AM
Multiple Database Connections - by El Forum - 05-01-2012, 04:26 AM
Multiple Database Connections - by El Forum - 11-30-2012, 07:58 PM
Multiple Database Connections - by El Forum - 05-12-2013, 03:20 AM
Multiple Database Connections - by El Forum - 08-09-2013, 10:58 AM
Multiple Database Connections - by El Forum - 08-09-2013, 11:23 PM
Multiple Database Connections - by El Forum - 08-10-2013, 12:10 AM
Multiple Database Connections - by El Forum - 08-21-2013, 05:24 AM



Theme © iAndrew 2016 - Forum software by © MyBB