diff options
author | Taufan Aditya <toopay@taufanaditya.com> | 2012-02-09 10:10:49 +0100 |
---|---|---|
committer | Taufan Aditya <toopay@taufanaditya.com> | 2012-02-09 10:10:49 +0100 |
commit | 0142f70954879180e3dbf26cee001a112843ac50 (patch) | |
tree | c376a8694e7eda48ae24b474bf11c8d2697af1e5 | |
parent | 1820933505d6aa8def25d0e74344f878c3ec76ad (diff) |
Added database.php
-rw-r--r-- | application/config/database.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/application/config/database.php b/application/config/database.php index 7eac59b23..bd68db1d8 100644 --- a/application/config/database.php +++ b/application/config/database.php @@ -37,6 +37,7 @@ | EXPLANATION OF VARIABLES | ------------------------------------------------------------------- | +| ['dsn'] The full DSN string describe a connection to the database. | ['hostname'] The hostname of your database server. | ['username'] The username used to connect to the database | ['password'] The password used to connect to the database @@ -74,6 +75,7 @@ $active_group = 'default'; $active_record = TRUE; +$db['default']['dsn'] = ''; $db['default']['hostname'] = 'localhost'; $db['default']['username'] = ''; $db['default']['password'] = ''; |