1 database.inc | protected DatabaseStatementBase::__construct($dbh) |
File
- core/
includes/ database/ database.inc, line 2261 - 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);
}