Statement::__construct

protected Statement::__construct(Connection $dbh)

File

core/lib/Drupal/Core/Database/Statement.php, line 34

Class

Statement
Default implementation of StatementInterface.

Namespace

Drupal\Core\Database

Code

1
2
3
4
protected function __construct(Connection $dbh) {
  $this->dbh = $dbh;
  $this->setFetchMode(\PDO::FETCH_OBJ);
}
doc_Drupal
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.