You are here

protected property Connection::$identifierQuotes in Drupal 9

Same name in this branch
  1. 9 core/lib/Drupal/Core/Database/Connection.php \Drupal\Core\Database\Connection::identifierQuotes
  2. 9 core/lib/Drupal/Core/Database/Driver/sqlite/Connection.php \Drupal\Core\Database\Driver\sqlite\Connection::identifierQuotes
  3. 9 core/lib/Drupal/Core/Database/Driver/pgsql/Connection.php \Drupal\Core\Database\Driver\pgsql\Connection::identifierQuotes
  4. 9 core/lib/Drupal/Core/Database/Driver/mysql/Connection.php \Drupal\Core\Database\Driver\mysql\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

core/lib/Drupal/Core/Database/Driver/pgsql/Connection.php, line 74

Class

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

Namespace

Drupal\Core\Database\Driver\pgsql

Code

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