August 2000
Intermediate to advanced
348 pages
8h 51m
English
RowSetReader
Interface Name:
javax.sql.RowSetReader
Superclass: None
Immediate Subclasses: None
Interfaces Implemented: None
Availability: New as of JDK 1.2
A class implementing the RowSetReader interface
registers itself with a RowSet object that
supports the reader/writer paradigm. A RowSet then
calls the RowSetReader to produce a new set of
rows that will become the contents of the RowSet.
public interface RowSetReader {
void readData(RowSetInternal rsi) throws java.sql.SQLException;
}public void readData(RowSetInternal rsi) throws java.sql.SQLException;
This method reads the new contents of a rowset. The execute( ) method in a rowset calls this method for rowsets that
support the reader/writer paradigm.
Read now
Unlock full access