function SelectExtender::range

Same name and namespace in other branches
  1. 8.9.x core/lib/Drupal/Core/Database/Query/SelectExtender.php \Drupal\Core\Database\Query\SelectExtender::range()
  2. 10 core/lib/Drupal/Core/Database/Query/SelectExtender.php \Drupal\Core\Database\Query\SelectExtender::range()
  3. 11.x core/lib/Drupal/Core/Database/Query/SelectExtender.php \Drupal\Core\Database\Query\SelectExtender::range()

Restricts a query to a given range in the result set.

If this method is called with no parameters, will remove any range directives that have been set.

Parameters

$start: The first record from the result set to return. If NULL, removes any range directives that are set.

$length: The number of records to return from the result set.

Return value

$this The called object.

Overrides SelectInterface::range

1 call to SelectExtender::range()
PagerSelectExtender::execute in core/lib/Drupal/Core/Database/Query/PagerSelectExtender.php
Override the execute method.

File

core/lib/Drupal/Core/Database/Query/SelectExtender.php, line 409

Class

SelectExtender
The base extender class for Select queries.

Namespace

Drupal\Core\Database\Query

Code

public function range($start = NULL, $length = NULL) {
    $this->query
        ->range($start, $length);
    return $this;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.