Welcome Guest, Not a member yet? Register   Sign In
creating multiple database connection in codeigniter
#3

[eluser]InsiteFX[/eluser]
Here's one I did for changing the database config for local and live server!
Code:
if (defined('ENVIRONMENT'))
{
switch (ENVIRONMENT)
{
  case 'development':
   $active_group  = 'default';
  break;

  case 'testing':
  case 'production':
   $active_group = 'live';
  break;

  default:
   $active_group  = 'default';
  break;
}
}
else
{
$active_group  = 'default';
}

$active_record = TRUE;

// Local Server.
$db['default']['hostname'] = 'localhost';
$db['default']['username'] = 'username';
$db['default']['password'] = 'password';
$db['default']['database'] = '';
$db['default']['dbdriver'] = 'mysql';
$db['default']['dbprefix'] = '';
$db['default']['pconnect'] = FALSE;
$db['default']['db_debug'] = TRUE;
$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;

// Live Server.
$db['live']['hostname'] = 'localhost';
$db['live']['username'] = 'username';
$db['live']['password'] = 'password';
$db['live']['database'] = '';
$db['live']['dbdriver'] = 'mysql';
$db['live']['dbprefix'] = '';
$db['live']['pconnect'] = FALSE;
$db['live']['db_debug'] = TRUE;
$db['live']['cache_on'] = FALSE;
$db['live']['cachedir'] = '';
$db['live']['char_set'] = 'utf8';
$db['live']['dbcollat'] = 'utf8_general_ci';
$db['live']['swap_pre'] = '';
$db['live']['autoinit'] = TRUE;
$db['live']['stricton'] = FALSE;


Messages In This Thread
creating multiple database connection in codeigniter - by El Forum - 03-08-2012, 10:28 PM
creating multiple database connection in codeigniter - by El Forum - 03-09-2012, 02:43 AM
creating multiple database connection in codeigniter - by El Forum - 03-09-2012, 05:14 AM
creating multiple database connection in codeigniter - by El Forum - 03-09-2012, 09:58 AM



Theme © iAndrew 2016 - Forum software by © MyBB