Example usage for Java javax.sql.rowset RowSetMetaDataImpl fields, constructors, methods, implement or subclass
The text is from its open source code.
void | setAutoIncrement(int columnIndex, boolean property) Sets whether the designated column is automatically numbered, thus read-only, to the given boolean value. |
void | setCaseSensitive(int columnIndex, boolean property) Sets whether the name of the designated column is case sensitive to the given boolean . |
void | setCatalogName(int columnIndex, String catalogName) Sets the catalog name of the table from which the designated column was derived to catalogName. |
void | setColumnCount(int columnCount) Sets to the given number the number of columns in the RowSet object for which this RowSetMetaDataImpl object was created. |
void | setColumnDisplaySize(int columnIndex, int size) Sets the normal maximum number of chars in the designated column to the given number. |
void | setColumnLabel(int columnIndex, String label) Sets the suggested column label for use in printouts and displays, if any, to label. |
void | setColumnName(int columnIndex, String columnName) Sets the column name of the designated column to the given name. |
void | setColumnType(int columnIndex, int SQLType) Sets the SQL type code for values stored in the designated column to the given type code from the class java.sql.Types . |
void | setColumnTypeName(int columnIndex, String typeName) Sets the type name used by the data source for values stored in the designated column to the given type name. |
void | setCurrency(int columnIndex, boolean property) Sets whether a value stored in the designated column is a cash value to the given boolean . |
void | setNullable(int columnIndex, int property) Sets whether a value stored in the designated column can be set to NULL to the given constant from the interface ResultSetMetaData . |
void | setPrecision(int columnIndex, int precision) Sets the total number of decimal digits in a value stored in the designated column to the given number. |
void | setScale(int columnIndex, int scale) Sets the number of digits to the right of the decimal point in a value stored in the designated column to the given number. |
void | setSchemaName(int columnIndex, String schemaName) Sets the designated column's table's schema name, if any, to schemaName. |
void | setSearchable(int columnIndex, boolean property) Sets whether a value stored in the designated column can be used in a WHERE clause to the given boolean value. |
void | setSigned(int columnIndex, boolean property) Sets whether a value stored in the designated column is a signed number to the given boolean . |
void | setTableName(int columnIndex, String tableName) Sets the name of the table from which the designated column was derived to the given table name. |