/** * Seek * * @param int offset * @return bool success * @throws rdbms.SQLException */ public function seek($offset) { if (!pg_data_seek($this->handle, $offset)) { throw new SQLException('Cannot seek to offset ' . $offset); } return TRUE; }
function seek($offset) { return pg_data_seek($this->id, $offset); }
public function seek($row_number) { return pg_data_seek($this->res, $row_number); }
function sql_rowseek($rownum, $query_id = 0) { if (!$query_id) { $query_id = $this->query_result; } if ($query_id) { $result = @pg_data_seek($query_id, $rownum); return $result; } else { return false; } }