diff options
author | Andrey Andreev <narf@bofh.bg> | 2012-06-26 17:13:13 +0200 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2012-06-26 17:13:13 +0200 |
commit | de6eff04445aeff78ad2e1bbdf7f6f1687653e3e (patch) | |
tree | e11afed046863fe0d77fc9465ba92d5133aabd39 /application/config | |
parent | bae037841f40c8068bffba5f089a363f211f8b44 (diff) |
Revert default config value of db pconnect to TRUE (issue #793)
Diffstat (limited to 'application/config')
-rw-r--r-- | application/config/database.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/application/config/database.php b/application/config/database.php index 19498735c..cb6ebad10 100644 --- a/application/config/database.php +++ b/application/config/database.php @@ -43,7 +43,7 @@ | ['password'] The password used to connect to the database | ['database'] The name of the database you want to connect to | ['dbdriver'] The database type. e.g.: mysql. Currently supported: -| cubrid, interbase, mssql, mysql, mysqli, oci8, +| cubrid, interbase, mssql, mysql, mysqli, oci8, | odbc, pdo, postgre, sqlite, sqlite3, sqlsrv | ['dbprefix'] You can add an optional prefix, which will be added | to the table name when using the Query Builder class @@ -84,7 +84,7 @@ $db['default'] = array( 'database' => '', 'dbdriver' => 'mysqli', 'dbprefix' => '', - 'pconnect' => FALSE, + 'pconnect' => TRUE, 'db_debug' => TRUE, 'cache_on' => FALSE, 'cachedir' => '', |