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.
string $table: An unsanitized table name.
string The sanitized table name.
Overrides Connection::escapeTable
public function escapeTable($table) { $escaped = parent::escapeTable($table); // Quote identifier to make it case-sensitive. if (preg_match('/[A-Z]/', $escaped)) { $escaped = '"' . $escaped . '"'; } elseif (in_array(strtolower($escaped), $this->postgresqlReservedKeyWords)) { // Quote the table name for PostgreSQL reserved key words. $escaped = '"' . $escaped . '"'; } return $escaped; }
© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Database!Driver!pgsql!Connection.php/function/Connection::escapeTable/8.1.x