public interface RowSetMetaData extends ResultSetMetaData
columnNoNulls, columnNullable, columnNullableUnknown| Modifier and Type | Method and Description |
|---|---|
void |
setAutoIncrement(int columnIndex,
boolean property) |
void |
setCaseSensitive(int columnIndex,
boolean property) |
void |
setCatalogName(int columnIndex,
String catalogName) |
void |
setColumnCount(int columnCount) |
void |
setColumnDisplaySize(int columnIndex,
int size) |
void |
setColumnLabel(int columnIndex,
String label) |
void |
setColumnName(int columnIndex,
String columnName) |
void |
setColumnType(int columnIndex,
int SQLType) |
void |
setColumnTypeName(int columnIndex,
String typeName) |
void |
setCurrency(int columnIndex,
boolean property) |
void |
setNullable(int columnIndex,
int property) |
void |
setPrecision(int columnIndex,
int precision) |
void |
setScale(int columnIndex,
int scale) |
void |
setSchemaName(int columnIndex,
String schemaName) |
void |
setSearchable(int columnIndex,
boolean property) |
void |
setSigned(int columnIndex,
boolean property) |
void |
setTableName(int columnIndex,
String tableName) |
getCatalogName, getColumnClassName, getColumnCount, getColumnDisplaySize, getColumnLabel, getColumnName, getColumnType, getColumnTypeName, getPrecision, getScale, getSchemaName, getTableName, isAutoIncrement, isCaseSensitive, isCurrency, isDefinitelyWritable, isNullable, isReadOnly, isSearchable, isSigned, isWritablevoid setColumnCount(int columnCount) throws SQLException
SQLExceptionvoid setAutoIncrement(int columnIndex, boolean property) throws SQLException
SQLExceptionvoid setCaseSensitive(int columnIndex, boolean property) throws SQLException
SQLExceptionvoid setSearchable(int columnIndex, boolean property) throws SQLException
SQLExceptionvoid setCurrency(int columnIndex, boolean property) throws SQLException
SQLExceptionvoid setNullable(int columnIndex, int property) throws SQLException
SQLExceptionvoid setSigned(int columnIndex, boolean property) throws SQLException
SQLExceptionvoid setColumnDisplaySize(int columnIndex, int size) throws SQLException
SQLExceptionvoid setColumnLabel(int columnIndex, String label) throws SQLException
SQLExceptionvoid setColumnName(int columnIndex, String columnName) throws SQLException
SQLExceptionvoid setSchemaName(int columnIndex, String schemaName) throws SQLException
SQLExceptionvoid setPrecision(int columnIndex, int precision) throws SQLException
SQLExceptionvoid setScale(int columnIndex, int scale) throws SQLException
SQLExceptionvoid setTableName(int columnIndex, String tableName) throws SQLException
SQLExceptionvoid setCatalogName(int columnIndex, String catalogName) throws SQLException
SQLExceptionvoid setColumnType(int columnIndex, int SQLType) throws SQLException
SQLExceptionvoid setColumnTypeName(int columnIndex, String typeName) throws SQLException
SQLException