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
Namespace
Drupal\Driver\Database\sqlsrv\PDOCode
public function exec($statement) {
try {
return parent::exec($statement);
} catch (\PDOException $e) {
$this
->NotifyException($e);
throw $e;
}
}