Java javax.sql.rowset JoinRowSet fields, constructors, methods, implement or subclass

Example usage for Java javax.sql.rowset JoinRowSet fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javax.sql.rowset JoinRowSet.

The text is from its open source code.

Method

voidaddRowSet(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.
voidaddRowSet(RowSet rowset, String columnName)
Adds rowset to this JoinRowSet object and sets the designated column as the match column.
voidaddRowSet(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.
voidaddRowSet(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.
voidclose()
Releases this ResultSet object's database and JDBC resources immediately instead of waiting for this to happen when it is automatically closed.
StringgetString(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.
booleannext()
Moves the cursor forward one row from its current position.