August 2000
Intermediate to advanced
348 pages
8h 51m
English
RowSetWriter
Interface Name:
javax.sql.RowSetWriter
Superclass: None
Immediate Subclasses: None
Interfaces Implemented: None
Availability: New as of JDK 1.2
A class implementing the RowSetWriter interface
registers itself with a RowSet object that
supports the reader/writer paradigm. A RowSet then
calls the RowSetWriter to write the contents of
the RowSet to the database.
public interface RowSetWriter {
boolean writeData(RowSetInternal rsi)
throws java.sql.SQLException;
}public void writeData(RowSetInternal rsi) throws java.sql.SQLException;
This method writes data back to the data source behind the rowset.
Read now
Unlock full access