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

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

Introduction

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

The text is from its open source code.

Method

voidacceptChanges()
Propagates row update, insert and delete changes made to this CachedRowSet object to the underlying data source.
voidbeforeFirst()
Moves the cursor to the front of this ResultSet object, just before the first row.
voidclose()
Releases this ResultSet object's database and JDBC resources immediately instead of waiting for this to happen when it is automatically closed.
voidexecute()
Fills this RowSet object with data.
intgetInt(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.
intgetRow()
Retrieves the current row number.
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.
voidinsertRow()
Inserts the contents of the insert row into this ResultSet object and into the database.
voidmoveToCurrentRow()
Moves the cursor to the remembered cursor position, usually the current row.
voidmoveToInsertRow()
Moves the cursor to the insert row.
booleannext()
Moves the cursor forward one row from its current position.
voidsetCommand(String cmd)
Sets this RowSet object's command property to the given SQL query.
voidsetFilter(Predicate p)
Applies the given Predicate object to this FilteredRowSet object.
voidsetPassword(String password)
Sets the database password for this RowSet object to the given String.
voidsetUrl(String url)
Sets the URL this RowSet object will use when it uses the DriverManager to create a connection.
voidsetUsername(String name)
Sets the username property for this RowSet object to the given String.
voidupdateInt(int columnIndex, int x)
Updates the designated column with an int value.
voidupdateString(int columnIndex, String x)
Updates the designated column with a String value.