null Driver_Database_Driver_MySQLI_Result::seek( )
public function seek($offset)
{
if ( $this->offsetExists($offset) && mysqli_data_seek($this->_result, $offset) )
{
$this->_current_row = $this->_internal_row = $offset;
return true;
}
else
{
return false;
}
}