All Superinterfaces:
ResultSetMetaData, Wrapper
All Known Implementing Classes:
RowSetMetaDataImpl

  • Field Summary

    Fields declared in interface ResultSetMetaData

    columnNoNulls, columnNullable, columnNullableUnknown

    static final int

    The constant indicating that a column does not allow NULL values.

    static final int

    The constant indicating that a column allows NULL values.

    static final int

    The constant indicating that the nullability of a column's values is unknown.

  • Method Summary

    void

    setAutoIncrement(int columnIndex, boolean property)

    Sets whether the designated column is automatically numbered, The default is for a RowSet object's columns not to be automatically numbered.

    void

    setCaseSensitive(int columnIndex, boolean property)

    Sets whether the designated column is case sensitive.

    void

    setCatalogName(int columnIndex, String catalogName)

    Sets the designated column's table's catalog name, if any, to the given String.

    void

    setColumnCount(int columnCount)

    Sets the number of columns in the RowSet object to the given number.

    void

    setColumnDisplaySize(int columnIndex, int size)

    Sets the designated column's normal maximum width in chars to the given int.

    void

    setColumnLabel(int columnIndex, String label)

    Sets the suggested column title for use in printouts and displays, if any, to the given String.

    void

    setColumnName(int columnIndex, String columnName)

    Sets the name of the designated column to the given String.

    void

    setColumnType(int columnIndex, int SQLType)

    Sets the designated column's SQL type to the one given.

    void

    setColumnTypeName(int columnIndex, String typeName)

    Sets the designated column's type name that is specific to the data source, if any, to the given String.

    void

    setCurrency(int columnIndex, boolean property)

    Sets whether the designated column is a cash value.

    void

    setNullable(int columnIndex, int property)

    Sets whether the designated column's value can be set to NULL.

    void

    setPrecision(int columnIndex, int precision)

    Sets the designated column's number of decimal digits to the given int.

    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.

    void

    setSchemaName(int columnIndex, String schemaName)

    Sets the name of the designated column's table's schema, if any, to the given String.

    void

    setSearchable(int columnIndex, boolean property)

    Sets whether the designated column can be used in a where clause.

    void

    setSigned(int columnIndex, boolean property)

    Sets whether the designated column is a signed number.

    void

    setTableName(int columnIndex, String tableName)

    Sets the designated column's table name, if any, to the given String.

    Methods declared in interface ResultSetMetaData

    getCatalogName, getColumnClassName, getColumnCount, getColumnDisplaySize, getColumnLabel, getColumnName, getColumnType, getColumnTypeName, getPrecision, getScale, getSchemaName, getTableName, isAutoIncrement, isCaseSensitive, isCurrency, isDefinitelyWritable, isNullable, isReadOnly, isSearchable, isSigned, isWritable

    Gets the designated column's table's catalog name.

    Returns the fully-qualified name of the Java class whose instances are manufactured if the method ResultSet.getObject is called to retrieve a value from the column.

    int

    Returns the number of columns in this ResultSet object.

    int

    Indicates the designated column's normal maximum width in characters.

    Gets the designated column's suggested title for use in printouts and displays.

    Get the designated column's name.

    int

    Retrieves the designated column's SQL type.

    Retrieves the designated column's database-specific type name.

    int

    Get the designated column's specified column size.

    int

    Gets the designated column's number of digits to right of the decimal point. 0 is returned for data types where the scale is not applicable.

    Get the designated column's table's schema.

    Gets the designated column's table name.

    boolean

    Indicates whether the designated column is automatically numbered.

    boolean

    Indicates whether a column's case matters.

    boolean

    Indicates whether the designated column is a cash value.

    boolean

    Indicates whether a write on the designated column will definitely succeed.

    int

    Indicates the nullability of values in the designated column.

    boolean

    Indicates whether the designated column is definitely not writable.

    boolean

    Indicates whether the designated column can be used in a where clause.

    boolean

    Indicates whether values in the designated column are signed numbers.

    boolean

    Indicates whether it is possible for a write on the designated column to succeed.

    Methods declared in interface Wrapper

    isWrapperFor, unwrap

    boolean

    Returns true if this either implements the interface argument or is directly or indirectly a wrapper for an object that does.

    <T> T

    Returns an object that implements the given interface to allow access to non-standard methods, or standard methods not exposed by the proxy.

  • Method Details

    • setColumnCount

    • setAutoIncrement

    • setCaseSensitive

    • setSearchable

    • setCurrency

    • setNullable

    • setSigned

    • setColumnDisplaySize

    • setColumnLabel

    • setColumnName

    • setSchemaName

    • setPrecision

    • setScale

    • setTableName

    • setCatalogName

    • setColumnType

    • setColumnTypeName