August 2000
Intermediate to advanced
348 pages
8h 51m
English
RowSet
Interface
Name:
javax.sql.RowSet
Superclass: java.sql.ResultSet
Immediate Subclasses: None
Interfaces Implemented: None
Availability: New as of JDK 1.2
Implementation of this class provides a JavaBeans frontend to a JDBC
result set. The key advantage of a RowSet is its
ability to be configured at design time and executed at runtime.
public interface RowSet extends java.sql.ResultSet { void addRowSetListener(RowSetListener l); void clearParameters( ) throws java.sql.SQLException; void execute( ) throws java.sql.SQLException; String getCommand( ); String getDataSourceName( ); boolean getEscapeProcessing( ) throws java.sql.SQLException; int getMaxFieldSize( ) throws java.sql.SQLException; int getMaxRows( ) throws java.sql.SQLException; String getPassword( ); int getQueryTimeout( ) throws java.sql.SQLException; int getTransactionIsolation( ); java.util.Map getTypeMap( ) throws java.sql.SQLException; String getUrl( ) throws java.sql.SQLException; String getUserName( ); boolean isReadOnly( ); void removeRowSetListener(RowSetListener l); void setArray(int col, java.sql.Array arr) throws java.sql.SQLException; void setAsciiStream(int col, java.io.InputStream is, int len) throws java.sql.SQLException; void setBigDecimal(int col, java.math.BigDecimal bd) throws java.sql.SQLException; void setBinaryStream(int col, java.io.InputStream is, int len) throws java.sql.SQLException; void setBlob(int col, java.sql.Blob bl) throws java.sql.SQLException; void ...Read now
Unlock full access