Example usage for Java javax.sql RowSet fields, constructors, methods, implement or subclass
The text is from its open source code.
void | beforeFirst() Moves the cursor to the front of this ResultSet object, just before the first row. |
float | getFloat(int columnIndex) Retrieves the value of the designated column in the current row of this ResultSet object as a float in the Java programming language. |
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. |
ResultSetMetaData | getMetaData() Retrieves the number, types and properties of this ResultSet object's columns. |
Object | getObject(int columnIndex) Gets the value of the designated column in the current row of this |
int | getRow() Retrieves the current row number. |
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. |
void | updateRow() Updates the underlying database with the new contents of the current row of this ResultSet object. |
void | updateString(int columnIndex, String x) Updates the designated column with a String value. |