Example usage for Java javax.sql.rowset FilteredRowSet fields, constructors, methods, implement or subclass
The text is from its open source code.
void | acceptChanges() Propagates row update, insert and delete changes made to this CachedRowSet object to the underlying data source. |
void | beforeFirst() Moves the cursor to the front of this ResultSet object, just before the first row. |
void | close() Releases this ResultSet object's database and JDBC resources immediately instead of waiting for this to happen when it is automatically closed. |
void | execute() Fills this RowSet object with data. |
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. |
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. |
void | insertRow() Inserts the contents of the insert row into this ResultSet object and into the database. |
void | moveToCurrentRow() Moves the cursor to the remembered cursor position, usually the current row. |
void | moveToInsertRow() Moves the cursor to the insert row. |
boolean | next() Moves the cursor forward one row from its current position. |
void | setCommand(String cmd) Sets this RowSet object's command property to the given SQL query. |
void | setFilter(Predicate p) Applies the given Predicate object to this FilteredRowSet object. |
void | setPassword(String password) Sets the database password for this RowSet object to the given String . |
void | setUrl(String url) Sets the URL this RowSet object will use when it uses the DriverManager to create a connection. |
void | setUsername(String name) Sets the username property for this RowSet object to the given String . |
void | updateInt(int columnIndex, int x) Updates the designated column with an int value. |
void | updateString(int columnIndex, String x) Updates the designated column with a String value. |