diff options
author | Derek Jones <derek.jones@ellislab.com> | 2009-02-27 17:29:59 +0100 |
---|---|---|
committer | Derek Jones <derek.jones@ellislab.com> | 2009-02-27 17:29:59 +0100 |
commit | 87cbafce2d6803af78714baf8bba64309c01fc33 (patch) | |
tree | ebc4797260b74b4959ac07cabaa97ba4236c3e2f /system/database/drivers/mysql | |
parent | af4fb22745413cac182064a495da83318a41fde9 (diff) |
added reconnect() method to db drivers
Diffstat (limited to 'system/database/drivers/mysql')
-rw-r--r-- | system/database/drivers/mysql/mysql_driver.php | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/system/database/drivers/mysql/mysql_driver.php b/system/database/drivers/mysql/mysql_driver.php index 2b05c3f15..334daf3a6 100644 --- a/system/database/drivers/mysql/mysql_driver.php +++ b/system/database/drivers/mysql/mysql_driver.php @@ -91,6 +91,25 @@ class CI_DB_mysql_driver extends CI_DB { // -------------------------------------------------------------------- /** + * Reconnect + * + * Keep / reestablish the db connection if no queries have been + * sent for a length of time exceeding the server's idle timeout + * + * @access public + * @return void + */ + function reconnect() + { + if (mysql_ping($this->conn_id) === FALSE) + { + $this->conn_id = FALSE; + } + } + + // -------------------------------------------------------------------- + + /** * Select the database * * @access private called by the base class |