disconnect() public method

Disconnect from db.
public disconnect ( )
Esempio n. 1
0
 /**
  * Disconnect from db.
  */
 public function disconnect()
 {
     $this->_read->disconnect();
     $this->_write->disconnect();
 }
Esempio n. 2
0
File: Sql.php Progetto: horde/horde
 /**
  * Close the underlying backend storage connection.
  * To be used during PING or looping SYNC operations.
  */
 public function disconnect()
 {
     $this->_db->disconnect();
 }