protected function DatabaseStatementBase::__construct
Archivo
- drupal-7.x/
includes/ database/ database.inc, line 2145 - Core systems for the database layer.
Class
- DatabaseStatementBase
- Default implementation of DatabaseStatementInterface.
Código
protected function __construct($dbh) {
$this->dbh = $dbh;
$this->setFetchMode(PDO::FETCH_OBJ);
}