You are here

public function Connection::exec in Drupal driver for SQL Server and SQL Azure 8.2

{@inhertidoc}

File

drivers/lib/Drupal/Driver/Database/sqlsrv/PDO/Connection.php, line 106

Class

Connection

Namespace

Drupal\Driver\Database\sqlsrv\PDO

Code

public function exec($statement) {
  try {
    return parent::exec($statement);
  } catch (\PDOException $e) {
    $this
      ->NotifyException($e);
    throw $e;
  }
}