summaryrefslogtreecommitdiffstats
path: root/system/database/drivers/mysqli
diff options
context:
space:
mode:
authorMichiel Vugteveen <michiel@it-can.nl>2012-08-20 18:34:24 +0200
committerMichiel Vugteveen <michiel@it-can.nl>2012-08-20 18:34:24 +0200
commitc27721fbd02511c168f4c353e4f5eac1b2049e9f (patch)
treeab30f925c62c84b6fed3ba1d25672951dd4191db /system/database/drivers/mysqli
parent0b1d56f08b5d95046a367ed65c7aef6c8d717bc3 (diff)
compression test
Diffstat (limited to 'system/database/drivers/mysqli')
-rw-r--r--system/database/drivers/mysqli/mysqli_driver.php8
1 files changed, 8 insertions, 0 deletions
diff --git a/system/database/drivers/mysqli/mysqli_driver.php b/system/database/drivers/mysqli/mysqli_driver.php
index be61aab20..475857c84 100644
--- a/system/database/drivers/mysqli/mysqli_driver.php
+++ b/system/database/drivers/mysqli/mysqli_driver.php
@@ -65,6 +65,14 @@ class CI_DB_mysqli_driver extends CI_DB {
*/
public function db_connect()
{
+ if ($this->compress === TRUE)
+ {
+ $port = NULL;
+
+ $mysqli = mysqli_init();
+ return $mysqli->real_connect($this->hostname, $this->username, $this->password, $this->database, $port, NULL, MYSQLI_CLIENT_COMPRESS);
+ }
+
return empty($this->port)
? @new mysqli($this->hostname, $this->username, $this->password, $this->database)
: @new mysqli($this->hostname, $this->username, $this->password, $this->database, $this->port);