选择语言 :

 Driver_Database_Driver_MySQL_Result::seek

null Driver_Database_Driver_MySQL_Result::seek( )
File: ./drivers/database/mysql/result.class.php
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;
    }
}