Java / JDBC
Explain JdbcRowSet in JDBC.
The JdbcRowSet implementation is a wrapper for ResultSet object and has following advantages over ResultSet.
- Uses ResultSet object as a JavaBeans component.
- A JdbcRowSet can be used as a JavaBeans component, thus it can be created and configured at design time and executed at run time.
- used to make a ResultSet object scrollable and updatable.
More Related questions...