JDBC RowSet Interface Flashcards

1
Q

Makes a connection to the database, executes the query set in the RowSet, populates the CachedRowSet object with the data, and closes the connection.

A

RowSetReader

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Makes a connection, updates the database with the changes made to the CachedRowSet object, and closes the connection.

A

RowSetWriter

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

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

A

JdbcRowSet

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

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).

A

CachedRowSet

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

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.

A

WebRowSet

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

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.

A

FilteredRowSet

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

A WebRowSet that can combine related data from multiple RowSets. A useful alternative to the use of the SQL JOIN statement.

A

JoinRowSet

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Creates a new JDBC Rowset Factory instance.

A

RowSetProvider.newFactory()

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Creates a new JDBCRowset

A

factoryInstanceYouCreated.createXXX() where XXX is the type of rowset, like WebRowSet or JoinRowSet.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly