|
JavaTM Platform Standard Ed. 6 |
|||||||||
上一个类 下一个类 | 框架 无框架 | |||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |
public interface ResultSetMetaData
可用于获取关于 ResultSet
对象中列的类型和属性信息的对象。以下代码片段创建 ResultSet
对象 rs,创建 ResultSetMetaData
对象 rsmd,并使用 rsmd 查找 rs 有多少列,以及 rs 中的第一列是否可以在 WHERE
子句中使用。
ResultSet rs = stmt.executeQuery("SELECT a, b, c FROM TABLE2"); ResultSetMetaData rsmd = rs.getMetaData(); int numberOfColumns = rsmd.getColumnCount(); boolean b = rsmd.isSearchable(1);
字段摘要 | |
---|---|
static int |
columnNoNulls
指示列不允许使用 NULL 值的常量。 |
static int |
columnNullable
指示列允许使用 NULL 值的常量。 |
static int |
columnNullableUnknown
指示不知道列的值是否可为 null 的常量。 |
方法摘要 | |
---|---|
String |
getCatalogName(int column)
获取指定列的表目录名称。 |
String |
getColumnClassName(int column)
如果调用方法 ResultSet.getObject 从列中获取值,则返回构造其实例的 Java 类的完全限定名称。 |
int |
getColumnCount()
返回此 ResultSet 对象中的列数。 |
int |
getColumnDisplaySize(int column)
指示指定列的最大标准宽度,以字符为单位。 |
String |
getColumnLabel(int column)
获取用于打印输出和显示的指定列的建议标题。 |
String |
getColumnName(int column)
获取指定列的名称。 |
int |
getColumnType(int column)
获取指定列的 SQL 类型。 |
String |
getColumnTypeName(int column)
获取指定列的数据库特定的类型名称。 |
int |
getPrecision(int column)
获取指定列的指定列宽。 |
int |
getScale(int column)
获取指定列的小数点右边的位数。 |
String |
getSchemaName(int column)
获取指定列的表模式。 |
String |
getTableName(int column)
获取指定列的名称。 |
boolean |
isAutoIncrement(int column)
指示是否自动为指定列进行编号。 |
boolean |
isCaseSensitive(int column)
指示列的大小写是否有关系。 |
boolean |
isCurrency(int column)
指示指定的列是否是一个哈希代码值。 |
boolean |
isDefinitelyWritable(int column)
指示在指定的列上进行写操作是否明确可以获得成功。 |
int |
isNullable(int column)
指示指定列中的值是否可以为 null。 |
boolean |
isReadOnly(int column)
指示指定的列是否明确不可写入。 |
boolean |
isSearchable(int column)
指示是否可以在 where 子句中使用指定的列。 |
boolean |
isSigned(int column)
指示指定列中的值是否带正负号。 |
boolean |
isWritable(int column)
指示在指定的列上进行写操作是否可以获得成功。 |
从接口 java.sql.Wrapper 继承的方法 |
---|
isWrapperFor, unwrap |
字段详细信息 |
---|
static final int columnNoNulls
NULL
值的常量。
static final int columnNullable
NULL
值的常量。
static final int columnNullableUnknown
方法详细信息 |
---|
int getColumnCount() throws SQLException
ResultSet
对象中的列数。
SQLException
- 如果发生数据库访问错误boolean isAutoIncrement(int column) throws SQLException
column
- 第一列是 1,第二个列是 2,……
true
;否则返回 false
SQLException
- 如果发生数据库访问错误boolean isCaseSensitive(int column) throws SQLException
column
- 第一列是 1,第二个列是 2,……
true
;否则返回 false
SQLException
- 如果发生数据库访问错误boolean isSearchable(int column) throws SQLException
column
- 第一列是 1,第二个列是 2,……
true
;否则返回 false
SQLException
- 如果发生数据库访问错误boolean isCurrency(int column) throws SQLException
column
- 第一列是 1,第二个列是 2,……
true
;否则返回 false
SQLException
- 如果发生数据库访问错误int isNullable(int column) throws SQLException
column
- 第一列是 1,第二个列是 2,……
columnNoNulls
、columnNullable
或 columnNullableUnknown
之一
SQLException
- 如果发生数据库访问错误boolean isSigned(int column) throws SQLException
column
- 第一列是 1,第二个列是 2,……
true
;否则返回 false
SQLException
- 如果发生数据库访问错误int getColumnDisplaySize(int column) throws SQLException
column
- 第一列是 1,第二个列是 2,……
SQLException
- 如果发生数据库访问错误String getColumnLabel(int column) throws SQLException
AS
子句来指定。如果未指定 SQL AS
,则从 getColumnLabel
返回的值将和 getColumnName
方法返回的值相同。
column
- 第一列是 1,第二个列是 2,……
SQLException
- 如果发生数据库访问错误String getColumnName(int column) throws SQLException
column
- 第一列是 1,第二个列是 2,……
SQLException
- 如果发生数据库访问错误String getSchemaName(int column) throws SQLException
column
- 第一列是 1,第二个列是 2,……
SQLException
- 如果发生数据库访问错误int getPrecision(int column) throws SQLException
column
- 第一列是 1,第二个列是 2,……
SQLException
- 如果发生数据库访问错误int getScale(int column) throws SQLException
column
- 第一列是 1,第二个列是 2,……
SQLException
- 如果发生数据库访问错误String getTableName(int column) throws SQLException
column
- 第一列是 1,第二个列是 2,……
SQLException
- 如果发生数据库访问错误String getCatalogName(int column) throws SQLException
column
- 第一列是 1,第二个列是 2,……
SQLException
- 如果发生数据库访问错误int getColumnType(int column) throws SQLException
column
- 第一列是 1,第二个列是 2,……
SQLException
- 如果发生数据库访问错误Types
String getColumnTypeName(int column) throws SQLException
column
- 第一列是 1,第二个列是 2,……
SQLException
- 如果发生数据库访问错误boolean isReadOnly(int column) throws SQLException
column
- 第一列是 1,第二个列是 2,……
true
;否则返回 false
SQLException
- 如果发生数据库访问错误boolean isWritable(int column) throws SQLException
column
- 第一列是 1,第二个列是 2,……
true
;否则返回 false
SQLException
- 如果发生数据库访问错误boolean isDefinitelyWritable(int column) throws SQLException
column
- 第一列是 1,第二个列是 2,……
true
;否则返回 false
SQLException
- 如果发生数据库访问错误String getColumnClassName(int column) throws SQLException
如果调用方法 ResultSet.getObject
从列中获取值,则返回构造其实例的 Java 类的完全限定名称。ResultSet.getObject
可能返回此方法所返回的类的子类。
column
- 第一列是 1,第二个列是 2,……
ResultSet.getObject
将使用该名称获取指定列中的值。此名称为用于自定义映射关系的类名称。
SQLException
- 如果发生数据库访问错误
|
JavaTM Platform Standard Ed. 6 |
|||||||||
上一个类 下一个类 | 框架 无框架 | |||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |
版权所有 2007 Sun Microsystems, Inc. 保留所有权利。 请遵守许可证条款。另请参阅文档重新分发政策。