Dibi\Result::seek PHP Method

seek() final public method

Moves cursor position without fetching row.
final public seek ( $row ) : boolean
return boolean TRUE on success, FALSE if unable to seek to specified record
    public final function seek($row)
    {
        return $row !== 0 || $this->fetched ? (bool) $this->getResultDriver()->seek($row) : TRUE;
    }