Method |
Description |
|
array_insert_after ( $array, $key, $entry ) |
|
|
getVariableType ( $expression ) |
|
|
isAggregateFunction ( $out ) |
|
|
isBracketExpression ( $out ) |
|
|
isColumnReference ( $out ) |
|
|
isCommaToken ( $token ) |
|
|
isComment ( $out ) |
|
|
isCommentToken ( $token ) |
|
|
isConstant ( $out ) |
|
|
isCustomFunction ( $out ) |
|
|
isExpression ( $out ) |
|
|
isFunction ( $out ) |
|
|
isReserved ( $out ) |
|
|
isSubQuery ( $out ) |
|
|
isWhitespaceToken ( $token ) |
|
|
removeParenthesisFromStart ( $token ) |
This method removes parenthesis from start of the given string. |
|
revokeQuotation ( $sql ) |
Revokes the quoting characters from an expression
Possibibilies:
a
'a'
"a"
a.b
a.b
a.b
a.b
It is also possible to have escaped quoting characters
within an expression part:
ab => ab
And you can use whitespace between the parts:
a . b => [a,b] |
|