ErrorException [ Warning ]: mysql_data_seek() expects parameter 2 to be long, string given
public function seek($offset)
32 {
33 if ($this->offsetExists($offset) AND mysql_data_seek( $this->_result, $offset))
34 {
35 // Set the current row to the offset
36 $this->_current_row = $this->_internal_row = $offset;
37
38 return TRUE;