$_typeMap
$_typeMap : \Cake\Database\TypeMap
Represents a SQL Query expression. Internally it stores a tree of expressions that can be compiled by converting this object to string and will contain a correctly parenthesized and nested expression.
$_typeMap : \Cake\Database\TypeMap
setTypeMap(array|\Cake\Database\TypeMap $typeMap) : $this
Creates a new TypeMap if $typeMap is an array, otherwise exchanges it for the given one.
array|\Cake\Database\TypeMap | $typeMap | Creates a TypeMap if array, otherwise sets the given TypeMap |
getTypeMap() : \Cake\Database\TypeMap
Returns the existing type map.
typeMap(array|\Cake\Database\TypeMap|null $typeMap = null) : $this|\Cake\Database\TypeMap
Creates a new TypeMap if $typeMap is an array, otherwise returns the existing type map or exchanges it for the given one.
array|\Cake\Database\TypeMap|null | $typeMap | Creates a TypeMap if array, otherwise sets the given TypeMap |
setDefaultTypes(array $types) : $this
Allows setting default types when chaining query.
array | $types | The array of types to set. |
None found |
None found |
defaultTypes(array|null $types = null) : $this|array
Allows setting default types when chaining query
array|null | $types | The array of types to set. |
None found |
__construct(string|array|\Cake\Database\ExpressionInterface $conditions = array(), array|\Cake\Database\TypeMap $types = array(), string $conjunction = 'AND')
Constructor. A new expression object can be created without any params and be built dynamically. Otherwise it is possible to pass an array of conditions containing either a tree-like array structure to be parsed and/or other expression objects. Optionally, you can set the conjunction keyword to be used for joining each part of this level of the expression tree.
string|array|\Cake\Database\ExpressionInterface | $conditions | tree-like array structure containing all the conditions to be added or nested inside this expression object. |
array|\Cake\Database\TypeMap | $types | associative array of types to be associated with the values passed in $conditions. |
string | $conjunction | the glue that will join all the string conditions at this level of the expression tree. For example "AND", "OR", "XOR"... |
None found |
setConjunction(string $conjunction) : $this
Changes the conjunction for the conditions at this level of the expression tree.
string | $conjunction | Value to be used for joining conditions |
None found |
getConjunction() : string
Gets the currently configured conjunction for the conditions at this level of the expression tree.
None found |
tieWith(string|null $conjunction = null) : string|$this
Changes the conjunction for the conditions at this level of the expression tree.
If called with no arguments it will return the currently configured value.
string|null | $conjunction | value to be used for joining conditions. If null it will not set any value, but return the currently stored one |
None found |
type(string|null $conjunction = null) : string|$this
Backwards compatible wrapper for tieWith()
string|null | $conjunction | value to be used for joining conditions. If null it will not set any value, but return the currently stored one |
None found |
add(string|array|\Cake\Database\ExpressionInterface $conditions, array $types = array()) : $this
Adds one or more conditions to this expression object. Conditions can be expressed in a one dimensional array, that will cause all conditions to be added directly at this level of the tree or they can be nested arbitrarily making it create more expression objects that will be nested inside and configured to use the specified conjunction.
If the type passed for any of the fields is expressed "type[]" (note braces) then it will cause the placeholder to be re-written dynamically so if the value is an array, it will create as many placeholders as values are in it.
string|array|\Cake\Database\ExpressionInterface | $conditions | single or multiple conditions to be added. When using an array and the key is 'OR' or 'AND' a new expression object will be created with that conjunction and internal array value passed as conditions. |
array | $types | associative array of fields pointing to the type of the values that are being passed. Used for correctly binding values to statements. |
None found |
eq(string|\Cake\Database\ExpressionInterface $field, mixed $value, string|null $type = null) : $this
Adds a new condition to the expression object in the form "field = value".
string|\Cake\Database\ExpressionInterface | $field | Database field to be compared against value |
mixed | $value | The value to be bound to $field for comparison |
string|null | $type | the type name for $value as configured using the Type map. If it is suffixed with "[]" and the value is an array then multiple placeholders will be created, one per each value in the array. |
None found |
notEq(string|\Cake\Database\ExpressionInterface $field, mixed $value, string|null $type = null) : $this
Adds a new condition to the expression object in the form "field != value".
string|\Cake\Database\ExpressionInterface | $field | Database field to be compared against value |
mixed | $value | The value to be bound to $field for comparison |
string|null | $type | the type name for $value as configured using the Type map. If it is suffixed with "[]" and the value is an array then multiple placeholders will be created, one per each value in the array. |
None found |
gt(string|\Cake\Database\ExpressionInterface $field, mixed $value, string|null $type = null) : $this
Adds a new condition to the expression object in the form "field > value".
string|\Cake\Database\ExpressionInterface | $field | Database field to be compared against value |
mixed | $value | The value to be bound to $field for comparison |
string|null | $type | the type name for $value as configured using the Type map. |
None found |
lt(string|\Cake\Database\ExpressionInterface $field, mixed $value, string|null $type = null) : $this
Adds a new condition to the expression object in the form "field < value".
string|\Cake\Database\ExpressionInterface | $field | Database field to be compared against value |
mixed | $value | The value to be bound to $field for comparison |
string|null | $type | the type name for $value as configured using the Type map. |
None found |
gte(string|\Cake\Database\ExpressionInterface $field, mixed $value, string|null $type = null) : $this
Adds a new condition to the expression object in the form "field >= value".
string|\Cake\Database\ExpressionInterface | $field | Database field to be compared against value |
mixed | $value | The value to be bound to $field for comparison |
string|null | $type | the type name for $value as configured using the Type map. |
None found |
lte(string|\Cake\Database\ExpressionInterface $field, mixed $value, string|null $type = null) : $this
Adds a new condition to the expression object in the form "field <= value".
string|\Cake\Database\ExpressionInterface | $field | Database field to be compared against value |
mixed | $value | The value to be bound to $field for comparison |
string|null | $type | the type name for $value as configured using the Type map. |
None found |
isNull(string|\Cake\Database\ExpressionInterface $field) : $this
Adds a new condition to the expression object in the form "field IS NULL".
string|\Cake\Database\ExpressionInterface | $field | database field to be tested for null |
None found |
isNotNull(string|\Cake\Database\ExpressionInterface $field) : $this
Adds a new condition to the expression object in the form "field IS NOT NULL".
string|\Cake\Database\ExpressionInterface | $field | database field to be tested for not null |
None found |
like(string|\Cake\Database\ExpressionInterface $field, mixed $value, string|null $type = null) : $this
Adds a new condition to the expression object in the form "field LIKE value".
string|\Cake\Database\ExpressionInterface | $field | Database field to be compared against value |
mixed | $value | The value to be bound to $field for comparison |
string|null | $type | the type name for $value as configured using the Type map. |
None found |
notLike(string|\Cake\Database\ExpressionInterface $field, mixed $value, string|null $type = null) : $this
Adds a new condition to the expression object in the form "field NOT LIKE value".
string|\Cake\Database\ExpressionInterface | $field | Database field to be compared against value |
mixed | $value | The value to be bound to $field for comparison |
string|null | $type | the type name for $value as configured using the Type map. |
None found |
in(string|\Cake\Database\ExpressionInterface $field, string|array $values, string|null $type = null) : $this
Adds a new condition to the expression object in the form "field IN (value1, value2)".
string|\Cake\Database\ExpressionInterface | $field | Database field to be compared against value |
string|array | $values | the value to be bound to $field for comparison |
string|null | $type | the type name for $value as configured using the Type map. |
None found |
addCase(array|\Cake\Database\ExpressionInterface $conditions, array|\Cake\Database\ExpressionInterface $values = array(), array $types = array()) : $this
Adds a new case expression to the expression object
array|\Cake\Database\ExpressionInterface | $conditions | The conditions to test. Must be a ExpressionInterface instance, or an array of ExpressionInterface instances. |
array|\Cake\Database\ExpressionInterface | $values | associative array of values to be associated with the conditions
passed in $conditions. If there are more $values than $conditions, the last $value is used as the |
array | $types | associative array of types to be associated with the values passed in $values |
None found |
notIn(string|\Cake\Database\ExpressionInterface $field, array $values, string|null $type = null) : $this
Adds a new condition to the expression object in the form "field NOT IN (value1, value2)".
string|\Cake\Database\ExpressionInterface | $field | Database field to be compared against value |
array | $values | the value to be bound to $field for comparison |
string|null | $type | the type name for $value as configured using the Type map. |
None found |
exists(\Cake\Database\ExpressionInterface $query) : $this
Adds a new condition to the expression object in the form "EXISTS (.
..)".
\Cake\Database\ExpressionInterface | $query | the inner query |
None found |
notExists(\Cake\Database\ExpressionInterface $query) : $this
Adds a new condition to the expression object in the form "NOT EXISTS (.
..)".
\Cake\Database\ExpressionInterface | $query | the inner query |
None found |
between(string|\Cake\Database\ExpressionInterface $field, mixed $from, mixed $to, string|null $type = null) : $this
Adds a new condition to the expression object in the form "field BETWEEN from AND to".
string|\Cake\Database\ExpressionInterface | $field | The field name to compare for values in between the range. |
mixed | $from | The initial value of the range. |
mixed | $to | The ending value in the comparison range. |
string|null | $type | the type name for $value as configured using the Type map. |
None found |
and_(string|array|\Cake\Database\ExpressionInterface $conditions, array $types = array()) : \Cake\Database\Expression\QueryExpression
Returns a new QueryExpression object containing all the conditions passed and set up the conjunction to be "AND"
string|array|\Cake\Database\ExpressionInterface | $conditions | to be joined with AND |
array | $types | associative array of fields pointing to the type of the values that are being passed. Used for correctly binding values to statements. |
None found |
or_(string|array|\Cake\Database\ExpressionInterface $conditions, array $types = array()) : \Cake\Database\Expression\QueryExpression
Returns a new QueryExpression object containing all the conditions passed and set up the conjunction to be "OR"
string|array|\Cake\Database\ExpressionInterface | $conditions | to be joined with OR |
array | $types | associative array of fields pointing to the type of the values that are being passed. Used for correctly binding values to statements. |
None found |
not(string|array|\Cake\Database\ExpressionInterface $conditions, array $types = array()) : $this
Adds a new set of conditions to this level of the tree and negates the final result by prepending a NOT, it will look like "NOT ( (condition1) AND (conditions2) )" conjunction depends on the one currently configured for this object.
string|array|\Cake\Database\ExpressionInterface | $conditions | to be added and negated |
array | $types | associative array of fields pointing to the type of the values that are being passed. Used for correctly binding values to statements. |
None found |
count() : integer
Returns the number of internal conditions that are stored in this expression.
Useful to determine if this expression object is void or it will generate a non-empty string when compiled
None found |
equalFields(string $left, string $right) : $this
Builds equal condition or assignment with identifier wrapping.
string | $left | Left join condition field name. |
string | $right | Right join condition field name. |
None found |
sql(\Cake\Database\ValueBinder $generator) : string
Returns the string representation of this object so that it can be used in a SQL query. Note that values condition values are not included in the string, in their place placeholders are put and can be replaced by the quoted values accordingly.
\Cake\Database\ValueBinder | $generator | Placeholder generator object |
None found |
traverse(callable $callable) : void
Traverses the tree structure of this query expression by executing a callback function for each of the conditions that are included in this object.
Useful for compiling the final expression, or doing introspection in the structure.
Callback function receives as only argument an instance of ExpressionInterface
callable | $callable | The callable to apply to all sub-expressions. |
None found |
iterateParts(callable $callable) : $this
Executes a callable function for each of the parts that form this expression.
The callable function is required to return a value with which the currently visited part will be replaced. If the callable function returns null then the part will be discarded completely from this expression.
The callback function will receive each of the conditions as first param and the key as second param. It is possible to declare the second parameter as passed by reference, this will enable you to change the key under which the modified part is stored.
callable | $callable | The callable to apply to each part. |
None found |
__call(string $method, array $args) : \Cake\Database\Expression\QueryExpression
Helps calling the `and()` and `or()` methods transparently.
string | $method | The method name. |
array | $args | The arguments to pass to the method. |
None found |
isCallable(callable $c) : boolean
Check whether or not a callable is acceptable.
We don't accept ['class', 'method'] style callbacks, as they often contain user input and arrays of strings are easy to sneak in.
callable | $c | The callable to check. |
Valid callable.
None found |
hasNestedExpression() : boolean
Returns true if this expression contains any other nested ExpressionInterface objects
None found |
None found |
_addConditions(array $conditions, array $types) : void
Auxiliary function used for decomposing a nested array of conditions and build a tree structure inside this object to represent the full SQL expression.
String conditions are stored directly in the conditions, while any other representation is wrapped around an adequate instance or of this class.
array | $conditions | list of conditions to be stored in this object |
array | $types | list of types associated on fields referenced in $conditions |
None found |
_parseCondition(string $field, mixed $value) : string|\Cake\Database\ExpressionInterface
Parses a string conditions by trying to extract the operator inside it if any and finally returning either an adequate QueryExpression object or a plain string representation of the condition. This function is responsible for generating the placeholders and replacing the values by them, while storing the value elsewhere for future binding.
string | $field | The value from with the actual field and operator will be extracted. |
mixed | $value | The value to be bound to a placeholder for the field |
None found |
_calculateType(string|\Cake\Database\Expression\IdentifierExpression $field) : string|null
Returns the type name for the passed field if it was stored in the typeMap
string|\Cake\Database\Expression\IdentifierExpression | $field | The field name to get a type for. |
The computed type or null, if the type is unknown.
None found |