You are here

protected function Connection::defaultOptions in Drupal driver for SQL Server and SQL Azure 8.2

File

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

Class

Connection

Namespace

Drupal\Driver\Database\sqlsrv\PDO

Code

protected function defaultOptions() {
  return array(
    'target' => 'default',
    'fetch' => \PDO::FETCH_OBJ,
    'throw_exception' => true,
    'allow_delimiter_in_query' => false,
  );
}