PMA\libraries\DatabaseInterface::dataSeek PHP Méthode

dataSeek() public méthode

Adjusts the result pointer to an arbitrary row in the result
public dataSeek ( object $result, integer $offset ) : boolean
$result object database result
$offset integer offset to seek
Résultat boolean true on success, false on failure
    public function dataSeek($result, $offset)
    {
        return $this->_extension->dataSeek($result, $offset);
    }