Example usage for Java javax.resource.cci ResultSet fields, constructors, methods, implement or subclass
The text is from its open source code.
void | close() Releases this ResultSet object's database and JDBC resources immediately instead of waiting for this to happen when it is automatically closed. |
int | getInt(int columnIndex) Retrieves the value of the designated column in the current row of this ResultSet object as an int in the Java programming language. |
String | getString(int columnIndex) Retrieves the value of the designated column in the current row of this ResultSet object as a String in the Java programming language. |
boolean | next() Moves the cursor forward one row from its current position. |