diff options
author | Andrey Andreev <narf@bofh.bg> | 2012-03-26 11:40:21 +0200 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2012-03-26 11:40:21 +0200 |
commit | 98350a59e21a7f5d38664a59170de91771c99a4b (patch) | |
tree | 9e1ecf158787f934e9df1e925dc402aa865e792a /system/database/DB_driver.php | |
parent | a1cb9902897ed717dba238daf4c84d539f47a474 (diff) | |
parent | 9a1fc2013e876347e9c8d336bade7ac589712bf7 (diff) |
Merge upstream branch
Diffstat (limited to 'system/database/DB_driver.php')
-rw-r--r-- | system/database/DB_driver.php | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/system/database/DB_driver.php b/system/database/DB_driver.php index 42b1b35aa..9f1a0b895 100644 --- a/system/database/DB_driver.php +++ b/system/database/DB_driver.php @@ -171,6 +171,23 @@ abstract class CI_DB_driver { // -------------------------------------------------------------------- /** + * Reconnect + * + * Keep / reestablish the db connection if no queries have been + * sent for a length of time exceeding the server's idle timeout. + * + * This is just a dummy method to allow drivers without such + * functionality to not declare it, while others will override it. + * + * @return void + */ + public function reconnect() + { + } + + // -------------------------------------------------------------------- + + /** * Set client character set * * @param string |