ResultSet object.
The following code fragment creates the ResultSet object rs,
creates the ResultSetMetaData object rsmd, and uses rsmd
to find out how many columns rs has and whether the first column in rs
can be used in a WHERE clause.
ResultSet rs = stmt.executeQuery("SELECT a, b, c FROM TABLE2");
ResultSetMetaData rsmd = rs.getMetaData();
int numberOfColumns = rsmd.getColumnCount();
boolean b = rsmd.isSearchable(1);
| Field Summary | |
|---|---|
| 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 | |
|---|---|
| String |
Gets the designated column's table's catalog name. |
| String |
Returns the fully-qualified name of the Java class whose instances
are manufactured if the method |
| int |
Returns the number of columns in this ResultSet object.
|
| int |
Indicates the designated column's normal maximum width in characters. |
| String |
Gets the designated column's suggested title for use in printouts and displays. |
| String |
Get the designated column's name. |
| int |
Retrieves the designated column's SQL type. |
| String |
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. |
| String |
Get the designated column's table's schema. |
| String |
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 inherited from java.sqlWrapper |
|---|
public static final
int
columnNoNulls
public static final
int
columnNullable
NULL values.
public static final
int
columnNullableUnknown
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. ResultSet.getObject may return a subclass of the
class returned by this method.
ResultSet object. AS
clause. If a SQL AS is not specified, the value returned from
getColumnLabel will be the same as the value returned by the
getColumnName method.
NULLvalues.