public function DatabaseConnection::destroy

Destroys this Connection object.

PHP does not destruct an object if it is still referenced in other variables. In case of PDO database connection objects, PHP only closes the connection when the PDO object is destructed, so any references to this object may cause the number of maximum allowed connections to be exceeded.

Archivo

drupal-7.x/includes/database/database.inc, line 320
Core systems for the database layer.

Class

DatabaseConnection
Base Database API class.

Código

public function destroy() {
  // Destroy all references to this connection by setting them to NULL.
  // The Statement class attribute only accepts a new value that presents a
  // proper callable, so we reset it to PDOStatement.
  $this->setAttribute(PDO::ATTR_STATEMENT_CLASS, array('PDOStatement', array()));
  $this->schema = NULL;
}