public Select::escapeField($string)
Escapes a field name string.
Force all field names to be strictly alphanumeric-plus-underscore. For some database drivers, it may also wrap the field name in database-specific escape characters.
string $string: An unsanitized field name.
The sanitized field name string.
Overrides SelectInterface::escapeField
public function escapeField($string) { return $this->connection->escapeField($string); }
© 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!Query!Select.php/function/Select::escapeField/8.1.x