Method Summary |
|
public void | cancel() If this query is busy executing then call cancel on its
PreparedStatement. |
public void | close() Close these results, discarding any exceptions. |
public void | execute() Execute the query for these results. |
public Object | get(int index) Return the row at index (zero based). |
public FetchSpec | getFetchSpec() Get the FetchSpec we were created from. |
public PreparedStatement | getPreparedStatement() |
public boolean | hasNext() Are there more results? This will execute the query if not already
done. |
public boolean | isClosed() |
public boolean | isScrollable() Is this a scrollable result? If true then get(index) can be used to
access the rows. |
public Object | next() Return an Object[] or a Object depending on the spec. |
public void | remove() Remove is not supported. |
public int | size() Return the number of results. |