Created
January 17, 2013 10:50
-
-
Save rob-bar/4555179 to your computer and use it in GitHub Desktop.
#snippet #fuelphp #php #config database settings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* The development database settings. | |
*/ | |
return array( | |
'default' => array( | |
'type' => 'mysqli', | |
'connection' => array( | |
'hostname' => '127.0.0.1', | |
'port' => '3306', | |
'database' => 'DB_name', | |
'username' => 'robbieb', | |
'password' => 'DeV_4321', | |
'persistent' => false, | |
'compress' => true | |
), | |
'identifier' => '`', | |
'table_prefix' => '', | |
'charset' => 'utf8', | |
'enable_cache' => true, | |
'profiling' => true, | |
), | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment