Fix #1705 : MySQL connection might be lost after long operations

This commit is contained in:
Romain Neutron
2014-02-28 12:35:11 +01:00
parent 170c145e15
commit 035576cefc
22 changed files with 128 additions and 68 deletions

View File

@@ -17,7 +17,6 @@
*/
interface connection_interface
{
public function ping();
public function get_name();
@@ -28,11 +27,5 @@ interface connection_interface
public function close();
public function prepare($statement, $driver_options = array());
public function beginTransaction();
public function commit();
public function server_info();
}