August 2000
Intermediate to advanced
348 pages
8h 51m
English
RowSetMetaData
Interface Name:
javax.sql.RowSetMetaData
Superclass: java.sql.ResultSetMetaData
Immediate Subclasses: None
Interfaces Implemented: None
Availability: New as of JDK 1.2
RowSetMetaData provides meta-data for
RowSet instances.
public interface RowSetMetaData extends java.sql.ResultSetMetaData { void setAutoIncrement(int col, boolean ai) thows java.sql.SQLException; void setCaseSensitive(int col, boolean cs) throws java.sql.SQLException; void setCatalogName(int col, String cname) throws java.sql.SQLException; void setColumnCount(int cc) throws java.sql.SQLException; void setColumnDisplaySize(int col, int sz) throws java.sql.SQLException; void setColumnLabel(int col, String lbl) throws java.sql.SQLException; void setColumnName(int col, String nom) throws java.sql.SQLException; void setColumnType(int col, int stype) throws java.sql.SQLException; void setColumnTypeName(int col, String tname) throws java.sql.SQLException; void setCurrency(int col, boolean b) throws java.sql.SQLException; void setNullable(int col, int nllbl) throws java.sql.SQLException; void setPrecision(int col, int prec) throws java.sql.SQLException; void setScale(int col, int sc) throws java.sql.SQLException; void setSchemaName(int col, String sname) throws java.sql.SQLException; void setSearchable(int col, boolean s) throws java.sql.SQLException; void setSigned(int col, boolean s) throws java.sql.SQLException; void setTableName(int col, String tname) throws java.sql.SQLException; ...Read now
Unlock full access