Connection::escapeTable

public Connection::escapeTable($table)

Escapes a table name string.

Force all table names to be strictly alphanumeric-plus-underscore. For some database drivers, it may also wrap the table name in database-specific escape characters.

Parameters

string $table: An unsanitized table name.

Return value

string The sanitized table name.

Overrides Connection::escapeTable

File

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

Class

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

Namespace

Drupal\Core\Database\Driver\pgsql

Code

public function escapeTable($table) {
  $escaped = parent::escapeTable($table);

  // Ensure that each part (database, schema and table) of the table name is
  // properly and independently escaped.
  $parts = explode('.', $escaped);
  $parts = array_map([$this, 'doEscape'], $parts);
  $escaped = implode('.', $parts);

  return $escaped;
}
doc_Drupal
2016-10-29 08:55:48
Comments
Leave a Comment

Please login to continue.