Java java.sql ResultSetMetaData fields, constructors, methods, implement or subclass

Example usage for Java java.sql ResultSetMetaData fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for java.sql ResultSetMetaData.

The text is from its open source code.

Implementation

java.sql.ResultSetMetaData has the following implementations.
Click this link to see all its implementation.

Field

intcolumnNoNulls
The constant indicating that a column does not allow NULL values.
intcolumnNullable
The constant indicating that a column allows NULL values.
intcolumnNullableUnknown
The constant indicating that the nullability of a column's values is unknown.

Constructor

Method

StringgetCatalogName(int column)
Gets the designated column's table's catalog name.
ClassgetClass()
Returns the runtime class of this Object .
StringgetColumnClassName(int column)

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.

intgetColumnCount()
Returns the number of columns in this ResultSet object.
intgetColumnDisplaySize(int column)
Indicates the designated column's normal maximum width in characters.
StringgetColumnLabel(int column)
Gets the designated column's suggested title for use in printouts and displays.
StringgetColumnName(int column)
Get the designated column's name.
intgetColumnType(int column)
Retrieves the designated column's SQL type.
StringgetColumnTypeName(int column)
Retrieves the designated column's database-specific type name.
intgetPrecision(int column)
Get the designated column's specified column size.
intgetScale(int column)
Gets the designated column's number of digits to right of the decimal point.
StringgetSchemaName(int column)
Get the designated column's table's schema.
StringgetTableName(int column)
Gets the designated column's table name.
booleanisAutoIncrement(int column)
Indicates whether the designated column is automatically numbered.
booleanisCaseSensitive(int column)
Indicates whether a column's case matters.
booleanisCurrency(int column)
Indicates whether the designated column is a cash value.
booleanisDefinitelyWritable(int column)
Indicates whether a write on the designated column will definitely succeed.
intisNullable(int column)
Indicates the nullability of values in the designated column.
booleanisReadOnly(int column)
Indicates whether the designated column is definitely not writable.
booleanisSearchable(int column)
Indicates whether the designated column can be used in a where clause.
booleanisSigned(int column)
Indicates whether values in the designated column are signed numbers.
booleanisWritable(int column)
Indicates whether it is possible for a write on the designated column to succeed.