public function Connection::escapeTable in Drupal 8
Same name in this branch
- 8 core/lib/Drupal/Core/Database/Connection.php \Drupal\Core\Database\Connection::escapeTable()
- 8 core/lib/Drupal/Core/Database/Driver/pgsql/Connection.php \Drupal\Core\Database\Driver\pgsql\Connection::escapeTable()
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
1 call to Connection::escapeTable()
- Connection::escapeField in core/
lib/ Drupal/ Core/ Database/ Driver/ pgsql/ Connection.php - Escapes a field name string.
File
- core/
lib/ Drupal/ Core/ Database/ Driver/ pgsql/ Connection.php, line 267
Class
- Connection
- PostgreSQL implementation of \Drupal\Core\Database\Connection.
Namespace
Drupal\Core\Database\Driver\pgsqlCode
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;
}