Class RowSetMetaDataImpl
java.lang.Object
javax.sql.rowset.RowSetMetaDataImpl
- All Implemented Interfaces:
Serializable, ResultSetMetaData, Wrapper, RowSetMetaData
Provides implementations for the methods that set and get
metadata information about a
RowSet object's columns.
A RowSetMetaDataImpl object keeps track of the
number of columns in the rowset and maintains an internal array
of column attributes for each column.
A RowSet object creates a RowSetMetaDataImpl
object internally in order to set and retrieve information about
its columns.
NOTE: All metadata in a RowSetMetaDataImpl object
should be considered as unavailable until the RowSet object
that it describes is populated.
Therefore, any RowSetMetaDataImpl method that retrieves information
is defined as having unspecified behavior when it is called
before the RowSet object contains data.
- Since:
- 1.5
- See Also:
-
Field Summary
Fields declared in interface ResultSetMetaData
columnNoNulls, columnNullable, columnNullableUnknown -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiongetCatalogName(int columnIndex) Retrieves the catalog name of the table from which the value in the designated column was derived.getColumnClassName(int columnIndex) Retrieves the fully-qualified name of the class in the Java programming language to which a value in the designated column will be mapped.intRetrieves the number of columns in theRowSetobject for which thisRowSetMetaDataImplobject was created.intgetColumnDisplaySize(int columnIndex) Retrieves the normal maximum width in chars of the designated column.getColumnLabel(int columnIndex) Retrieves the suggested column title for the designated column for use in printouts and displays.getColumnName(int columnIndex) Retrieves the name of the designated column.intgetColumnType(int columnIndex) Retrieves the type code (one of thejava.sql.Typesconstants) for the SQL type of the value stored in the designated column.getColumnTypeName(int columnIndex) Retrieves the DBMS-specific type name for values stored in the designated column.intgetPrecision(int columnIndex) Retrieves the total number of digits for values stored in the designated column.intgetScale(int columnIndex) Retrieves the number of digits to the right of the decimal point for values stored in the designated column.getSchemaName(int columnIndex) Retrieves the schema name of the table from which the value in the designated column was derived.getTableName(int columnIndex) Retrieves the name of the table from which the value in the designated column was derived.booleanisAutoIncrement(int columnIndex) Retrieves whether a value stored in the designated column is automatically numbered, and thus readonly.booleanisCaseSensitive(int columnIndex) Indicates whether the case of the designated column's name matters.booleanisCurrency(int columnIndex) Indicates whether a value stored in the designated column is a cash value.booleanisDefinitelyWritable(int columnIndex) Indicates whether a write operation on the designated column will definitely succeed.intisNullable(int columnIndex) Retrieves a constant indicating whether it is possible to store aNULLvalue in the designated column.booleanisReadOnly(int columnIndex) Indicates whether the designated column is definitely not writable, thus readonly.booleanisSearchable(int columnIndex) Indicates whether a value stored in the designated column can be used in aWHEREclause.booleanisSigned(int columnIndex) Indicates whether a value stored in the designated column is a signed number.booleanisWrapperFor(Class<?> interfaces) Returns true if this either implements the interface argument or is directly or indirectly a wrapper for an object that does.booleanisWritable(int columnIndex) Indicates whether it is possible for a write operation on the designated column to succeed.voidsetAutoIncrement(int columnIndex, boolean property) Sets whether the designated column is automatically numbered, thus read-only, to the givenbooleanvalue.voidsetCaseSensitive(int columnIndex, boolean property) Sets whether the name of the designated column is case sensitive to the givenboolean.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 theRowSetobject for which thisRowSetMetaDataImplobject 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 classjava.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 givenboolean.voidsetNullable(int columnIndex, int property) Sets whether a value stored in the designated column can be set toNULLto the given constant from the interfaceResultSetMetaData.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 aWHEREclause to the givenbooleanvalue.voidsetSigned(int columnIndex, boolean property) Sets whether a value stored in the designated column is a signed number to the givenboolean.voidsetTableName(int columnIndex, String tableName) Sets the name of the table from which the designated column was derived to the given table name.<T> TReturns an object that implements the given interface to allow access to non-standard methods, or standard methods not exposed by the proxy.
-
Constructor Details
-
RowSetMetaDataImpl
public RowSetMetaDataImpl()Constructs aRowSetMetaDataImplobject.
-
-
Method Details
-
setColumnCount
Sets to the given number the number of columns in theRowSetobject for which thisRowSetMetaDataImplobject was created.- Specified by:
setColumnCountin interfaceRowSetMetaData- Parameters:
columnCount- anintgiving the number of columns in theRowSetobject- Throws:
SQLException- if the given number is equal to or less than zero
-
setAutoIncrement
Sets whether the designated column is automatically numbered, thus read-only, to the givenbooleanvalue.- Specified by:
setAutoIncrementin interfaceRowSetMetaData- Parameters:
columnIndex- the first column is 1, the second is 2, and so on; must be between1and the number of columns in the rowset, inclusiveproperty-trueif the given column is automatically incremented;falseotherwise- Throws:
SQLException- if a database access error occurs or the given index is out of bounds
-
setCaseSensitive
Sets whether the name of the designated column is case sensitive to the givenboolean.- Specified by:
setCaseSensitivein interfaceRowSetMetaData- Parameters:
columnIndex- the first column is 1, the second is 2, and so on; must be between1and the number of columns in the rowset, inclusiveproperty-trueto indicate that the column name is case sensitive;falseotherwise- Throws:
SQLException- if a database access error occurs or the given column number is out of bounds
-
setSearchable
Sets whether a value stored in the designated column can be used in aWHEREclause to the givenbooleanvalue.- Specified by:
setSearchablein interfaceRowSetMetaData- Parameters:
columnIndex- the first column is 1, the second is 2, and so on; must be between1and the number of columns in the rowset, inclusiveproperty-trueto indicate that a column value can be used in aWHEREclause;falseotherwise- Throws:
SQLException- if a database access error occurs or the given column number is out of bounds
-
setCurrency
Sets whether a value stored in the designated column is a cash value to the givenboolean.- Specified by:
setCurrencyin interfaceRowSetMetaData- Parameters:
columnIndex- the first column is 1, the second is 2, and so on; must be between1and the number of columns, inclusive between1and the number of columns, inclusiveproperty- true if the value is a cash value; false otherwise.- Throws:
SQLException- if a database access error occurs or the given column number is out of bounds
-
setNullable
Sets whether a value stored in the designated column can be set toNULLto the given constant from the interfaceResultSetMetaData.- Specified by:
setNullablein interfaceRowSetMetaData- Parameters:
columnIndex- the first column is 1, the second is 2, and so on; must be between1and the number of columns, inclusiveproperty- one of the followingResultSetMetaDataconstants:columnNoNulls,columnNullable, orcolumnNullableUnknown- Throws:
SQLException- if a database access error occurs, the given column number is out of bounds, or the value supplied for the property parameter is not one of the following constants:ResultSetMetaData.columnNoNulls,ResultSetMetaData.columnNullable, orResultSetMetaData.columnNullableUnknown
-
setSigned
Sets whether a value stored in the designated column is a signed number to the givenboolean.- Specified by:
setSignedin interfaceRowSetMetaData- Parameters:
columnIndex- the first column is 1, the second is 2, and so on; must be between1and the number of columns, inclusiveproperty-trueto indicate that a column value is a signed number;falseto indicate that it is not- Throws:
SQLException- if a database access error occurs or the given column number is out of bounds
-
setColumnDisplaySize
Sets the normal maximum number of chars in the designated column to the given number.- Specified by:
setColumnDisplaySizein interfaceRowSetMetaData- Parameters:
columnIndex- the first column is 1, the second is 2, and so on; must be between1and the number of columns, inclusivesize- the maximum size of the column in chars; must be0or more- Throws:
SQLException- if a database access error occurs, the given column number is out of bounds, or size is less than0
-
setColumnLabel
Sets the suggested column label for use in printouts and displays, if any, to label. If label isnull, the column label is set to an empty string ("").- Specified by:
setColumnLabelin interfaceRowSetMetaData- Parameters:
columnIndex- the first column is 1, the second is 2, and so on; must be between1and the number of columns, inclusivelabel- the column label to be used in printouts and displays; if the column label isnull, an emptyStringis set- Throws:
SQLException- if a database access error occurs or the given column index is out of bounds
-
setColumnName
Sets the column name of the designated column to the given name.- Specified by:
setColumnNamein interfaceRowSetMetaData- Parameters:
columnIndex- the first column is 1, the second is 2, and so on; must be between1and the number of columns, inclusivecolumnName- aStringobject indicating the column name; if the given name isnull, an emptyStringis set- Throws:
SQLException- if a database access error occurs or the given column index is out of bounds
-
setSchemaName
Sets the designated column's table's schema name, if any, to schemaName. If schemaName isnull, the schema name is set to an empty string ("").- Specified by:
setSchemaNamein interfaceRowSetMetaData- Parameters:
columnIndex- the first column is 1, the second is 2, and so on; must be between1and the number of columns, inclusiveschemaName- the schema name for the table from which a value in the designated column was derived; may be an emptyStringornull- Throws:
SQLException- if a database access error occurs or the given column number is out of bounds
-
setPrecision
Sets the total number of decimal digits in a value stored in the designated column to the given number.- Specified by:
setPrecisionin interfaceRowSetMetaData- Parameters:
columnIndex- the first column is 1, the second is 2, and so on; must be between1and the number of columns, inclusiveprecision- the total number of decimal digits; must be0or more- Throws:
SQLException- if a database access error occurs, columnIndex is out of bounds, or precision is less than0
-
setScale
Sets the number of digits to the right of the decimal point in a value stored in the designated column to the given number.- Specified by:
setScalein interfaceRowSetMetaData- Parameters:
columnIndex- the first column is 1, the second is 2, and so on; must be between1and the number of columns, inclusivescale- the number of digits to the right of the decimal point; must be zero or greater- Throws:
SQLException- if a database access error occurs, columnIndex is out of bounds, or scale is less than0
-
setTableName
Sets the name of the table from which the designated column was derived to the given table name.- Specified by:
setTableNamein interfaceRowSetMetaData- Parameters:
columnIndex- the first column is 1, the second is 2, and so on; must be between1and the number of columns, inclusivetableName- the column's table name; may benullor an empty string- Throws:
SQLException- if a database access error occurs or the given column number is out of bounds
-
setCatalogName
Sets the catalog name of the table from which the designated column was derived to catalogName. If catalogName isnull, the catalog name is set to an empty string.- Specified by:
setCatalogNamein interfaceRowSetMetaData- Parameters:
columnIndex- the first column is 1, the second is 2, and so on; must be between1and the number of columns, inclusivecatalogName- the column's table's catalog name; if the catalogName isnull, an emptyStringis set- Throws:
SQLException- if a database access error occurs or the given column number is out of bounds
-
setColumnType
Sets the SQL type code for values stored in the designated column to the given type code from the class
-