function db_query_range in Drupal 8
Same name and namespace in other branches
- 4 includes/database.mysqli.inc \db_query_range()
- 4 includes/database.mysql.inc \db_query_range()
- 4 includes/database.pgsql.inc \db_query_range()
- 5 includes/database.mysqli.inc \db_query_range()
- 5 includes/database.mysql.inc \db_query_range()
- 5 includes/database.pgsql.inc \db_query_range()
- 6 includes/database.mysqli.inc \db_query_range()
- 6 includes/database.mysql.inc \db_query_range()
- 6 includes/database.pgsql.inc \db_query_range()
- 7 includes/database/database.inc \db_query_range()
Executes a query against the active database, restricted to a range.
Parameters
string $query: The prepared statement query to run. Although it will accept both named and unnamed placeholders, named placeholders are strongly preferred as they are more self-documenting.
$from: The first record from the result set to return.
$count: The number of records to return from the result set.
array $args: An array of values to substitute into the query. If the query uses named placeholders, this is an associative array in any order. If the query uses unnamed placeholders (?), this is an indexed array and the order must match the order of placeholders in the query string.
array $options: An array of options to control how the query operates.
Return value
\Drupal\Core\Database\StatementInterface A prepared statement object, already executed.
Deprecated
in drupal:8.0.0 and is removed from drupal:9.0.0. Instead, get a database connection injected into your service from the container and call queryRange() on it. For example, $injected_database->queryRange($query, $from, $count, $args, $options);
See also
https://www.drupal.org/node/2993033
\Drupal\Core\Database\Connection::queryRange()
\Drupal\Core\Database\Connection::defaultOptions()
Related topics
1 string reference to 'db_query_range'
- Error::decodeException in core/
lib/ Drupal/ Core/ Utility/ Error.php - Decodes an exception and retrieves the correct caller.
File
- core/
includes/ database.inc, line 93 - Core systems for the database layer.
Code
function db_query_range($query, $from, $count, array $args = [], array $options = []) {
@trigger_error('db_query_range() is deprecated in drupal:8.0.0. It will be removed from drupal:9.0.0. Instead, get a database connection injected into your service from the container and call queryRange() on it. For example, $injected_database->queryRange($query, $from, $count, $args, $options). See https://www.drupal.org/node/2993033', E_USER_DEPRECATED);
return Database::getConnection(_db_get_target($options))
->queryRange($query, $from, $count, $args, $options);
}