Example usage for Java javax.sql.rowset JoinRowSet fields, constructors, methods, implement or subclass
The text is from its open source code.
void | addRowSet(RowSet rowset, int columnIdx) Adds the given RowSet object to this JoinRowSet object and sets the designated column as the match column for the RowSet object. |
void | addRowSet(RowSet rowset, String columnName) Adds rowset to this JoinRowSet object and sets the designated column as the match column. |
void | addRowSet(RowSet[] rowset, int[] columnIdx) Adds one or more RowSet objects contained in the given array of RowSet objects to this JoinRowSet object and sets the match column for each of the RowSet objects to the match columns in the given array of column indexes. |
void | addRowSet(RowSet[] rowset, String[] columnName) Adds one or more RowSet objects contained in the given array of RowSet objects to this JoinRowSet object and sets the match column for each of the RowSet objects to the match columns in the given array of column names. |
void | close() Releases this ResultSet object's database and JDBC resources immediately instead of waiting for this to happen when it is automatically closed. |
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. |