constant Select::RESERVED_REGEXP_BASE in Drupal driver for SQL Server and SQL Azure 8
Same name and namespace in other branches
- 8.2 drivers/lib/Drupal/Driver/Database/sqlsrv/Select.php \Drupal\Driver\Database\sqlsrv\Select::RESERVED_REGEXP_BASE
File
- drivers/
lib/ Drupal/ Driver/ Database/ sqlsrv/ Select.php, line 214 - Definition of Drupal\Driver\Database\sqlsrv\Select
Class
Namespace
Drupal\Driver\Database\sqlsrvCode
const RESERVED_REGEXP_BASE = '/\\G
# Everything that follows a boundary that is not ":" or "_" or ".".
\\b(?<![:\\[_\\[.])(?:
# Any reserved words, followed by a boundary that is not an opening parenthesis.
({0})
(?!\\()
|
# Or a normal word.
([a-z]+)
)\\b
|
\\b(
[^a-z\'"\\\\]+
)\\b
|
(?=[\'"])
(
" [^\\\\"] * (?: \\\\. [^\\\\"] *) * "
|
\' [^\\\\\']* (?: \\\\. [^\\\\\']*) * \'
)
/Six';