Welcome Guest, Not a member yet? Register   Sign In
Switching database config for model not working: $this->load->database('name')
#1

[eluser]fdgsuhofdshjdfgh[/eluser]
Hi,

I have 2 database configs defined in config/database.php:

Code:
$active_group = 'primary';
$active_record = TRUE;

$db['primary']['hostname'] = 'localhost';
...
$db['secondary']['hostname'] = 'localhost';
...

I have primary set to my default. I have a model that needs to use the secondary database so I do the following, as instructed by the documentation:

Code:
function list_clients($company)
{
    $this->load->database('secondary');
    $company_query = $this->db->query('SELECT * FROM secondary_table');
}

but this doesn't work, it tries to connect to the primary database.

I have tested if it's a configuration error by switching the active_group variable to "secondary" and then it connects fine and works as expected. So the problem is for some reason:

Code:
$this->load->database('secondary');

is being ignored. What am I doing wrong? Any gotcha I'm missing? Tried on both Windows and Linux. PHP 5.3.4
#2

[eluser]mejlo[/eluser]
HI,
try:
Code:
$db = $this->load->database('secondary', TRUE);
$company_query = $db->query('SELECT * FROM secondary_table');
#3

[eluser]Unknown[/eluser]
I found your question because I was having the same problem.
I found the issue for me to be because I was auto loading the database library, which creates a database connection to your default database connection every time you load a page. You can turn this off in the config/autoload.php file
Change
Code:
$autoload['libraries']('database');
to
Code:
$autoload['libraries']();




Theme © iAndrew 2016 - Forum software by © MyBB