You are here

protected function StatementBase::__construct in Drupal driver for SQL Server and SQL Azure 8.2

File

drivers/lib/Drupal/Driver/Database/sqlsrv/StatementBase.php, line 39
Contains \Drupal\Core\Database\Statement.

Class

StatementBase
Default implementation of StatementInterface.

Namespace

Drupal\Driver\Database\sqlsrv

Code

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