javax.sql
Interface RowSetMetaData
- All Superinterfaces:
- ResultSetMetaData
public interface RowSetMetaData
- extends ResultSetMetaData
- Since:
- 1.4
Method Summary |
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)
|
Methods inherited from interface java.sql.ResultSetMetaData |
getCatalogName, getColumnClassName, getColumnCount, getColumnDisplaySize, getColumnLabel, getColumnName, getColumnType, getColumnTypeName, getPrecision, getScale, getSchemaName, getTableName, isAutoIncrement, isCaseSensitive, isCurrency, isDefinitelyWritable, isNullable, isReadOnly, isSearchable, isSigned, isWritable |
setColumnCount
void setColumnCount(int columnCount)
throws SQLException
- Throws:
SQLException
setAutoIncrement
void setAutoIncrement(int columnIndex,
boolean property)
throws SQLException
- Throws:
SQLException
setCaseSensitive
void setCaseSensitive(int columnIndex,
boolean property)
throws SQLException
- Throws:
SQLException
setSearchable
void setSearchable(int columnIndex,
boolean property)
throws SQLException
- Throws:
SQLException
setCurrency
void setCurrency(int columnIndex,
boolean property)
throws SQLException
- Throws:
SQLException
setNullable
void setNullable(int columnIndex,
int property)
throws SQLException
- Throws:
SQLException
setSigned
void setSigned(int columnIndex,
boolean property)
throws SQLException
- Throws:
SQLException
setColumnDisplaySize
void setColumnDisplaySize(int columnIndex,
int size)
throws SQLException
- Throws:
SQLException
setColumnLabel
void setColumnLabel(int columnIndex,
String label)
throws SQLException
- Throws:
SQLException
setColumnName
void setColumnName(int columnIndex,
String columnName)
throws SQLException
- Throws:
SQLException
setSchemaName
void setSchemaName(int columnIndex,
String schemaName)
throws SQLException
- Throws:
SQLException
setPrecision
void setPrecision(int columnIndex,
int precision)
throws SQLException
- Throws:
SQLException
setScale
void setScale(int columnIndex,
int scale)
throws SQLException
- Throws:
SQLException
setTableName
void setTableName(int columnIndex,
String tableName)
throws SQLException
- Throws:
SQLException
setCatalogName
void setCatalogName(int columnIndex,
String catalogName)
throws SQLException
- Throws:
SQLException
setColumnType
void setColumnType(int columnIndex,
int SQLType)
throws SQLException
- Throws:
SQLException
setColumnTypeName
void setColumnTypeName(int columnIndex,
String typeName)
throws SQLException
- Throws:
SQLException