You are here

protected function DatabaseStatementBase::__construct in Drupal 7

File

includes/database/database.inc, line 2255
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);
}