Methods Summary |
---|
public void | setAutoIncrement(int columnIndex, boolean property)Sets whether the designated column is automatically numbered,
and thus read-only. The default is for a RowSet object's
columns not to be automatically numbered.
|
public void | setCaseSensitive(int columnIndex, boolean property)Sets whether the designated column is case sensitive.
The default is false .
|
public void | setCatalogName(int columnIndex, java.lang.String catalogName)Sets the designated column's table's catalog name, if any, to the given
String .
|
public void | setColumnCount(int columnCount)Sets the number of columns in the RowSet object to
the given number.
|
public void | setColumnDisplaySize(int columnIndex, int size)Sets the designated column's normal maximum width in chars to the
given int .
|
public void | setColumnLabel(int columnIndex, java.lang.String label)Sets the suggested column title for use in printouts and
displays, if any, to the given String .
|
public void | setColumnName(int columnIndex, java.lang.String columnName)Sets the name of the designated column to the given String .
|
public void | setColumnType(int columnIndex, int SQLType)Sets the designated column's SQL type to the one given.
|
public void | setColumnTypeName(int columnIndex, java.lang.String typeName)Sets the designated column's type name that is specific to the
data source, if any, to the given String .
|
public void | setCurrency(int columnIndex, boolean property)Sets whether the designated column is a cash value.
The default is false .
|
public void | setNullable(int columnIndex, int property)Sets whether the designated column's value can be set to
NULL .
The default is ResultSetMetaData.columnNullableUnknown
|
public void | setPrecision(int columnIndex, int precision)Sets the designated column's number of decimal digits to the
given int .
|
public void | setScale(int columnIndex, int scale)Sets the designated column's number of digits to the
right of the decimal point to the given int .
|
public void | setSchemaName(int columnIndex, java.lang.String schemaName)Sets the name of the designated column's table's schema, if any, to
the given String .
|
public void | setSearchable(int columnIndex, boolean property)Sets whether the designated column can be used in a where clause.
The default is false .
|
public void | setSigned(int columnIndex, boolean property)Sets whether the designated column is a signed number.
The default is false .
|
public void | setTableName(int columnIndex, java.lang.String tableName)Sets the designated column's table name, if any, to the given
String .
|