Java javax.sql.rowset RowSetMetaDataImpl fields, constructors, methods, implement or subclass

Example usage for Java javax.sql.rowset RowSetMetaDataImpl fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javax.sql.rowset RowSetMetaDataImpl.

The text is from its open source code.

Constructor

Method

voidsetAutoIncrement(int columnIndex, boolean property)
Sets whether the designated column is automatically numbered, thus read-only, to the given boolean value.
voidsetCaseSensitive(int columnIndex, boolean property)
Sets whether the name of the designated column is case sensitive to the given boolean.
voidsetCatalogName(int columnIndex, String catalogName)
Sets the catalog name of the table from which the designated column was derived to catalogName.
voidsetColumnCount(int columnCount)
Sets to the given number the number of columns in the RowSet object for which this RowSetMetaDataImpl object was created.
voidsetColumnDisplaySize(int columnIndex, int size)
Sets the normal maximum number of chars in the designated column to the given number.
voidsetColumnLabel(int columnIndex, String label)
Sets the suggested column label for use in printouts and displays, if any, to label.
voidsetColumnName(int columnIndex, String columnName)
Sets the column name of the designated column to the given name.
voidsetColumnType(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.
voidsetColumnTypeName(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.
voidsetCurrency(int columnIndex, boolean property)
Sets whether a value stored in the designated column is a cash value to the given boolean.
voidsetNullable(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.
voidsetPrecision(int columnIndex, int precision)
Sets the total number of decimal digits in a value stored in the designated column to the given number.
voidsetScale(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.
voidsetSchemaName(int columnIndex, String schemaName)
Sets the designated column's table's schema name, if any, to schemaName.
voidsetSearchable(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.
voidsetSigned(int columnIndex, boolean property)
Sets whether a value stored in the designated column is a signed number to the given boolean.
voidsetTableName(int columnIndex, String tableName)
Sets the name of the table from which the designated column was derived to the given table name.