Methods Summary |
---|
public void | setAutoIncrement(int columnIndex, boolean autoIncrement)Sets automatic numbering for a specified column in the {@code RowSet}. If
automatic numbering is on, the column is read-only. The default value for
the auto increment parameter is {@code false}.
|
public void | setCaseSensitive(int columnIndex, boolean caseSensitive)Sets the case sensitive property for a specified column in the {@code
RowSet}. The default is that the column is not case sensitive.
|
public void | setCatalogName(int columnIndex, java.lang.String catalogName)Sets the catalog name for a specified column in the {@code RowSet}.
|
public void | setColumnCount(int columnCount)Sets the number of columns contained in the row set.
|
public void | setColumnDisplaySize(int columnIndex, int displaySize)Sets the normal maximum width in characters for a specified column in the
{@code RowSet}.
|
public void | setColumnLabel(int columnIndex, java.lang.String theLabel)Sets the suggested name as label for the column contained in the {@code
RowSet}. The label is an alias for printing and displaying purposes.
|
public void | setColumnName(int columnIndex, java.lang.String theColumnName)Sets the column name for a specified column in the {@code RowSet}.
|
public void | setColumnType(int columnIndex, int theSQLType)Sets the SQL type for a specified column in the {@code RowSet}.
|
public void | setColumnTypeName(int columnIndex, java.lang.String theTypeName)Sets the type name for a specified column in the {@code RowSet}, where
the data type is specific to the data source.
|
public void | setCurrency(int columnIndex, boolean isCurrency)Sets whether a specified column is a currency value. The default value is
{@code false}.
|
public void | setNullable(int columnIndex, int nullability)Sets whether a specified column can contain SQL {@code NULL} values.
|
public void | setPrecision(int columnIndex, int thePrecision)Sets the number of decimal digits for a specified column in the {@code
RowSet}.
|
public void | setScale(int columnIndex, int theScale)Declares how many decimal digits there should be after a decimal point
for the column specified by {@code columnIndex}.
|
public void | setSchemaName(int columnIndex, java.lang.String theSchemaName)Sets the schema name for a specified column in the {@code RowSet}.
|
public void | setSearchable(int columnIndex, boolean isSearchable)Sets whether a specified column can be used in a search involving a
{@code WHERE} clause. The default value is {@code false}.
|
public void | setSigned(int columnIndex, boolean isSigned)Sets if a specified column can contain signed numbers.
|
public void | setTableName(int columnIndex, java.lang.String theTableName)Sets the table name for a specified column in the {@code RowSet}.
|