diff options
author | Andrey Andreev <narf@bofh.bg> | 2012-03-26 11:50:03 +0200 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2012-03-26 11:50:03 +0200 |
commit | 808f3a62f9ca97670e457e1307fe261c42879d28 (patch) | |
tree | 1a6f24d41251b2e8c77d326d512c58fb7e013603 /system/database/DB_driver.php | |
parent | 0d87bae93d5558f03d8194df13020517e3e84364 (diff) | |
parent | 59ad0af04debb4e10e20fbdfc1827a620a88b7be (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 162fc21f8..373744100 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 |