You are here

public function Query::__wakeup in Drupal 7

Implements the magic __wakeup function to reconnect to the database.

File

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

Class

Query
Base class for query builders.

Code

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