You are here

protected property Connection::$identifierQuotes in Drupal driver for SQL Server and SQL Azure 4.1.x

Same name and namespace in other branches
  1. 4.2.x src/Driver/Database/sqlsrv/Connection.php \Drupal\sqlsrv\Driver\Database\sqlsrv\Connection::identifierQuotes
  2. 4.0.x src/Driver/Database/sqlsrv/Connection.php \Drupal\sqlsrv\Driver\Database\sqlsrv\Connection::identifierQuotes

The identifier quote characters for the database type.

An array containing the start and end identifier quote characters for the database type. The ANSI SQL standard identifier quote character is a double quotation mark.

Type: string[]

Overrides Connection::$identifierQuotes

File

src/Driver/Database/sqlsrv/Connection.php, line 40

Class

Connection
Sqlsvr implementation of \Drupal\Core\Database\Connection.

Namespace

Drupal\sqlsrv\Driver\Database\sqlsrv

Code

protected $identifierQuotes = [
  '[',
  ']',
];