public function Query::__wakeup

Implements the magic __wakeup function to reconnect to the database.

Archivo

drupal-7.x/includes/database/query.inc, line 352
Non-specific Database query code. Used by all engines.

Class

Query
Base class for query builders.

Código

public function __wakeup() {
  $this->connection = Database::getConnection($this->connectionTarget, $this->connectionKey);
}