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