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

1
2
3
4
5
6
7
8
9
10
11
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
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.