diff options
author | Alex Bilbie <alex@alexbilbie.com> | 2012-08-31 01:41:29 +0200 |
---|---|---|
committer | Alex Bilbie <alex@alexbilbie.com> | 2012-08-31 01:41:29 +0200 |
commit | b7c5444de271fb524f8a21d57f384fc0735175c0 (patch) | |
tree | 02595852a2e320452a67596b50ee531a3ad1db88 /system/database/DB_driver.php | |
parent | 20ff7666f11f19c39cd91bd42a3b88293b8e9a26 (diff) | |
parent | 9819cba2138ce1c32aa1e8a7d5938d03b4becc3e (diff) |
Merge pull request #1732 from IT-Can/mysql-compression
MySQL & MySQLi client compression
Diffstat (limited to 'system/database/DB_driver.php')
-rw-r--r-- | system/database/DB_driver.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/system/database/DB_driver.php b/system/database/DB_driver.php index d63a1d955..4296815f8 100644 --- a/system/database/DB_driver.php +++ b/system/database/DB_driver.php @@ -51,6 +51,7 @@ abstract class CI_DB_driver { public $char_set = 'utf8'; public $dbcollat = 'utf8_general_ci'; public $autoinit = TRUE; // Whether to automatically initialize the DB + public $compress = TRUE; public $swap_pre = ''; public $port = ''; public $pconnect = FALSE; |