protected function DatabaseStatementBase::__construct

7.x database.inc protected DatabaseStatementBase::__construct($dbh)

File

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

Class

DatabaseStatementBase
Default implementation of DatabaseStatementInterface.

Code

protected function __construct($dbh) {
  $this->dbh = $dbh;
  $this->setFetchMode(PDO::FETCH_OBJ);
}