db_query_range
- Versions
- 4.6 – 6
db_query_range($query)- 7
db_query_range($query, $from, $count, array $args = array(), array $options = array())
Execute an arbitrary query string against the active database, restricted to a specified range.
See also
DatabaseConnection::defaultOptions()
Parameters
$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.
$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.
$options An array of options to control how the query operates.
Return value
A prepared statement object, already executed.
Related topics
Code
includes/database/database.inc, line 2038
<?php
function db_query_range($query, $from, $count, array $args = array(), array $options = array()) {
if (empty($options['target'])) {
$options['target'] = 'default';
}
return Database::getConnection($options['target'])->queryRange($query, $from, $count, $args, $options);
}
?>Login or register to post comments 