Name

RowSetMetaData

Synopsis

Interface Name: javax.sql.RowSetMetaData

Superclass: java.sql.ResultSetMetaData

Immediate Subclasses: None

Interfaces Implemented: None

Availability: New as of JDK 1.2

Description

RowSetMetaData provides meta-data for RowSet instances.

Class Summary

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; ...

Get Database Programming with JDBC & Java, Second Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.