JDBC RowSet Interface Flashcards
Makes a connection to the database, executes the query set in the RowSet, populates the CachedRowSet object with the data, and closes the connection.
RowSetReader
Makes a connection, updates the database with the changes made to the CachedRowSet object, and closes the connection.
RowSetWriter
A connected RowSet; acts as JavaBeans component by providing a thin wrapper around a ResultSet; useful for applications that benefit from the event model supported by JDBCrowset
JdbcRowSet
A disconnected RowSet; provides an offline representation of a rowset; useful for applications where the data needs to be available when the database is not (like in a mobile phone).
CachedRowSet
A CachedRowSet that can write itself as an XML file and read an XML file to re-create a this row set. Useful in applications where XML data is a requirement.
WebRowSet
A WebRowSet that provides the additional capability of filtering its contents. This row set can use a Predicate object to control what data is returned.
FilteredRowSet
A WebRowSet that can combine related data from multiple RowSets. A useful alternative to the use of the SQL JOIN statement.
JoinRowSet
Creates a new JDBC Rowset Factory instance.
RowSetProvider.newFactory()
Creates a new JDBCRowset
factoryInstanceYouCreated.createXXX() where XXX is the type of rowset, like WebRowSet or JoinRowSet.