Searched defs:ResultSet (Results 1 - 1 of 1) sorted by relevance

/libcore/luni/src/main/java/java/sql/
H A DResultSet.java31 * {@code ResultSet}s have a cursor which points to the current data table row.
32 * When the {@code ResultSet} is created, the cursor's location is one position
35 * long as there are more rows in the {@code ResultSet}, otherwise it returns
38 * The default type of {@code ResultSet} can not be updated and its cursor can
40 * possible to read through it once. However, other kinds of {@code ResultSet}
43 * {@code ResultSet} is created is demonstrated in the following example:
48 * ResultSet.TYPE_SCROLL_SENSITIVE,}{@code ResultSet.CONCUR_UPDATABLE );}</dd>
49 * <dd>{@code ResultSet theResultSet =
53 * The {@code ResultSet} interfac
84 public interface ResultSet extends Wrapper, AutoCloseable { interface in inherits:Wrapper,AutoCloseable
[all...]

Completed in 665 milliseconds