예제 #1
0
파일: Connection.php 프로젝트: nextras/dbal
 /**
  * Disconnects from a database.
  * @return void
  */
 public function disconnect()
 {
     if (!$this->connected) {
         return;
     }
     $this->driver->disconnect();
     $this->connected = FALSE;
     $this->fireEvent('onDisconnect', [$this]);
 }
 /**
  * Disconnects from a database.
  * @return void
  */
 public function disconnect()
 {
     $this->driver->disconnect();
     $this->connected = FALSE;
     $this->fireEvent('onDisconnect', [$this]);
 }