$_repository
$_repository : \Cake\Datasource\RepositoryInterface
Instance of a table object this query is bound to
Contains the characteristics for an object that is attached to a repository and can retrieve results based on any criteria.
$_repository : \Cake\Datasource\RepositoryInterface
Instance of a table object this query is bound to
$_results : \Cake\Datasource\ResultSetInterface|null
A ResultSet.
When set, query execution will be bypassed.
$_cache : \Cake\Datasource\QueryCacher|null
A query cacher instance if this query has caching enabled.
repository(\Cake\Datasource\RepositoryInterface|null $table = null) : \Cake\Datasource\RepositoryInterface|$this
Returns the default table object that will be used by this query, that is, the table that will appear in the from clause.
When called with a Table argument, the default table object will be set and this query object will be returned for chaining.
\Cake\Datasource\RepositoryInterface|null | $table | The default table object to use |
getRepository() : \Cake\Datasource\RepositoryInterface
Returns the default table object that will be used by this query, that is, the table that will appear in the from clause.
setResult(\Cake\Datasource\ResultSetInterface $results) : $this
Set the result set for a query.
Setting the resultset of a query will make execute() a no-op. Instead of executing the SQL query and fetching results, the ResultSet provided to this method will be returned.
This method is most useful when combined with results stored in a persistent cache.
\Cake\Datasource\ResultSetInterface | $results | The results this query should return. |
getIterator() : \Iterator
Executes this query and returns a results iterator. This function is required for implementing the IteratorAggregate interface and allows the query to be iterated without having to call execute() manually, thus making it look like a result set instead of the query itself.
cache(false|string|\Closure $key, string|\Cake\Cache\CacheEngine $config = 'default') : $this
Enable result caching for this query.
If a query has caching enabled, it will do the following when executed:
// Simple string key + config
$query->cache('my_key', 'db_results');
// Function to generate key.
$query->cache(function ($q) {
$key = serialize($q->clause('select'));
$key .= serialize($q->clause('where'));
return md5($key);
});
// Using a pre-built cache engine.
$query->cache('my_key', $engine);
// Disable caching
$query->cache(false);
false|string|\Closure | $key | Either the cache key or a function to generate the cache key. When using a function, this query instance will be supplied as an argument. |
string|\Cake\Cache\CacheEngine | $config | Either the name of the cache config to use, or a cache config instance. |
aliasField(string $field, string|null $alias = null) : array
Returns a key => value array representing a single aliased field that can be passed directly to the select() method.
The key will contain the alias and the value the actual field name.
If the field is already aliased, then it will not be changed. If no $alias is passed, the default table for this query will be used.
string | $field | The field to alias |
string|null | $alias | the alias used to prefix the field |
None found |
aliasFields(array $fields, string|null $defaultAlias = null) : array
Runs `aliasField()` for each field in the provided list and returns the result under a single array.
array | $fields | The fields to alias |
string|null | $defaultAlias | The default alias |
None found |
all() : \Cake\Datasource\ResultSetInterface
Fetch the results for this query.
Will return either the results set through setResult(), or execute this query and return the ResultSetDecorator object ready for streaming of results.
ResultSetDecorator is a traversable object that implements the methods found on Cake\Collection\Collection.
None found |
toArray() : array
Returns an array representation of the results after executing the query.
None found |
mapReduce(callable|null $mapper = null, callable|null $reducer = null, boolean $overwrite = false) : $this|array
Register a new MapReduce routine to be executed on top of the database results Both the mapper and caller callable should be invokable objects.
The MapReduce routing will only be run when the query is executed and the first result is attempted to be fetched.
If the first argument is set to null, it will return the list of previously registered map reduce routines. This is deprecated as of 3.6.0 - use getMapReducers() instead.
If the third argument is set to true, it will erase previous map reducers and replace it with the arguments passed.
callable|null | $mapper | The mapper callable. |
callable|null | $reducer | The reducing function. |
boolean | $overwrite | Set to true to overwrite existing map + reduce functions. |
None found |
getMapReducers() : array
Returns the list of previously registered map reduce routines.
None found |
formatResults(callable|null $formatter = null, boolean|integer $mode) : $this|array
Registers a new formatter callback function that is to be executed when trying to fetch the results from the database.
Formatting callbacks will get a first parameter, an object implementing
\Cake\Collection\CollectionInterface
, that can be traversed and modified at will.
Callbacks are required to return an iterator object, which will be used as
the return value for this query's result. Formatter functions are applied
after all the MapReduce
routines for this query have been executed.
If the first argument is set to null, it will return the list of previously registered format routines. This is deprecated as of 3.6.0 - use getResultFormatters() instead.
If the second argument is set to true, it will erase previous formatters and replace them with the passed first argument.
// Return all results from the table indexed by id
$query->select(['id', 'name'])->formatResults(function ($results) {
return $results->indexBy('id');
});
// Add a new column to the ResultSet
$query->select(['name', 'birth_date'])->formatResults(function ($results) {
return $results->map(function ($row) {
$row['age'] = $row['birth_date']->diff(new DateTime)->y;
return $row;
});
});
callable|null | $formatter | The formatting callable. |
boolean|integer | $mode | Whether or not to overwrite, append or prepend the formatter. |
None found |
getResultFormatters() : array
Returns the list of previously registered format routines.
None found |
first() : \Cake\Datasource\EntityInterface|array|null
Returns the first result out of executing this query, if the query has not been executed before, it will set the limit clause to 1 for performance reasons.
$singleUser = $query->select(['id', 'username'])->first();
The first result from the ResultSet.
None found |
firstOrFail() : \Cake\Datasource\EntityInterface|array
Get the first result from the executing query or raise an exception.
When there is no first record.
The first result from the ResultSet.
None found |
getOptions() : array
Returns an array with the custom options that were applied to this query and that were not already processed by another method in this class.
$query->applyOptions(['doABarrelRoll' => true, 'fields' => ['id', 'name']);
$query->getOptions(); // Returns ['doABarrelRoll' => true]
None found |
__call(string $method, array $arguments) : mixed
Enables calling methods from the result set as if they were from this class
string | $method | the method to call |
array | $arguments | list of arguments for the method to call |
if no such method exists in result set
None found |
applyOptions(array $options) : $this
Populates or adds parts to current query clauses using an array.
This is handy for passing all query clauses at once.
array | $options | the options to be applied |
None found |
_execute() : \Traversable
Executes this query and returns a traversable object containing the results
None found |
_decorateResults(\Traversable $result) : \Cake\Datasource\ResultSetInterface
Decorates the results iterator with MapReduce routines and formatters
\Traversable | $result | Original results |
None found |
_decoratorClass() : string
Returns the name of the class to be used for decorating results
None found |