diff options
author | Andrey Andreev <narf@bofh.bg> | 2012-01-27 19:36:23 +0100 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2012-01-27 19:36:23 +0100 |
commit | f055fa98c7c7dbdd44ca485cde9efe112f713123 (patch) | |
tree | 1d40beb88970884e73caeb5ca184662834d5c2bf /system/database/drivers | |
parent | 3a91cabf0cb346bbd4d44fe249f9f726101ba310 (diff) |
Add PHP version check in db_pconnect()
Diffstat (limited to 'system/database/drivers')
-rw-r--r-- | system/database/drivers/mysqli/mysqli_driver.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/system/database/drivers/mysqli/mysqli_driver.php b/system/database/drivers/mysqli/mysqli_driver.php index c6ffb4929..a79b2a4ad 100644 --- a/system/database/drivers/mysqli/mysqli_driver.php +++ b/system/database/drivers/mysqli/mysqli_driver.php @@ -85,6 +85,12 @@ class CI_DB_mysqli_driver extends CI_DB { */ public function db_pconnect() { + // Persistent connection support was added in PHP 5.3.0 + if ( ! is_php('5.3')) + { + return $this->db_connect(); + } + return ($this->port != '') ? @mysqli_connect('p:'.$this->hostname, $this->username, $this->password, $this->database, $this->port) : @mysqli_connect('p:'.$this->hostname, $this->username, $this->password, $this->database); |