diff options
author | Phil Sturgeon <email@philsturgeon.co.uk> | 2012-02-10 11:37:09 +0100 |
---|---|---|
committer | Phil Sturgeon <email@philsturgeon.co.uk> | 2012-02-10 11:37:09 +0100 |
commit | 16af6afe991381360439135ddb0735dab1280fed (patch) | |
tree | def14317577f8f1f4eba47f5bb4db2c744c8f330 /application/config/database.php | |
parent | aca5186f7d0746642d42f1c67a5debb7912effea (diff) | |
parent | fdd6ad088cd5c6f29974f23e1a2747c243ecb278 (diff) |
Merge pull request #1022 from toopay/pdo
Fixed PDO issues.
Diffstat (limited to 'application/config/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'] = ''; |