public interface ParameterMetaData
implements Wrapper
java.sql.ParameterMetaData |
一个对象,可用于获取有关PreparedStatement
对象中每个参数标记的类型和属性的信息。 对于某些查询和驱动程序实现, ParameterMetaData
对象返回的数据在执行PreparedStatement
之前可能无法使用。
某些驱动程序实现可能无法提供有关 CallableStatement
对象中每个参数标记的类型和属性的信息。
Constants |
|
---|---|
int |
parameterModeIn 表示参数模式为IN的常量。 |
int |
parameterModeInOut 表示参数模式为INOUT的常量。 |
int |
parameterModeOut 表示参数模式为OUT的常量。 |
int |
parameterModeUnknown 表示参数模式未知的常量。 |
int |
parameterNoNulls 该常数表示参数不允许 |
int |
parameterNullable 该常数表示参数将允许 |
int |
parameterNullableUnknown 表示参数的可空性未知的常数。 |
Public methods |
|
---|---|
abstract String |
getParameterClassName(int param) 检索其实例应传递给方法 |
abstract int |
getParameterCount() 检索 |
abstract int |
getParameterMode(int param) 检索指定参数的模式。 |
abstract int |
getParameterType(int param) 检索指定参数的SQL类型。 |
abstract String |
getParameterTypeName(int param) 检索指定参数的特定于数据库的类型名称。 |
abstract int |
getPrecision(int param) 检索指定参数的指定列大小。 |
abstract int |
getScale(int param) 检索小数点右侧指定参数的位数。 |
abstract int |
isNullable(int param) 检索指定参数是否允许空值。 |
abstract boolean |
isSigned(int param) 检索指定参数的值是否可以是带符号的数字。 |
Inherited methods |
|
---|---|
From interface java.sql.Wrapper
|
int parameterNullableUnknown
表示参数的可空性未知的常数。
常量值:2(0x00000002)
String getParameterClassName (int param)
检索其实例应传递给方法 PreparedStatement.setObject
的Java类的完全限定名称。
Parameters | |
---|---|
param |
int : the first parameter is 1, the second is 2, ... |
Returns | |
---|---|
String |
the fully-qualified name of the class in the Java programming language that would be used by the method PreparedStatement.setObject to set the value in the specified parameter. This is the class name used for custom mapping. |
Throws | |
---|---|
SQLException |
if a database access error occurs |
int getParameterCount ()
检索 ParameterMetaData
对象包含信息的 PreparedStatement
对象中的参数数量。
Returns | |
---|---|
int |
the number of parameters |
Throws | |
---|---|
SQLException |
if a database access error occurs |
int getParameterMode (int param)
检索指定参数的模式。
Parameters | |
---|---|
param |
int : the first parameter is 1, the second is 2, ... |
Returns | |
---|---|
int |
mode of the parameter; one of ParameterMetaData.parameterModeIn , ParameterMetaData.parameterModeOut , or ParameterMetaData.parameterModeInOut ParameterMetaData.parameterModeUnknown . |
Throws | |
---|---|
SQLException |
if a database access error occurs |
int getParameterType (int param)
检索指定参数的SQL类型。
Parameters | |
---|---|
param |
int : the first parameter is 1, the second is 2, ... |
Returns | |
---|---|
int |
SQL type from java.sql.Types |
Throws | |
---|---|
SQLException |
if a database access error occurs |
也可以看看:
String getParameterTypeName (int param)
检索指定参数的特定于数据库的类型名称。
Parameters | |
---|---|
param |
int : the first parameter is 1, the second is 2, ... |
Returns | |
---|---|
String |
type the name used by the database. If the parameter type is a user-defined type, then a fully-qualified type name is returned. |
Throws | |
---|---|
SQLException |
if a database access error occurs |
int getPrecision (int param)
检索指定参数的指定列大小。
返回的值表示给定参数的最大列大小。 对于数字数据,这是最高精度。 对于字符数据,这是以字符为单位的长度。 对于datetime数据类型,这是字符串表示的字符长度(假设小数秒组件的最大允许精度)。 对于二进制数据,这是以字节为单位的长度。 对于ROWID数据类型,这是以字节为单位的长度。 对于列大小不适用的数据类型,返回0。
Parameters | |
---|---|
param |
int : the first parameter is 1, the second is 2, ... |
Returns | |
---|---|
int |
precision |
Throws | |
---|---|
SQLException |
if a database access error occurs |
int getScale (int param)
检索小数点右侧指定参数的位数。 针对比例不适用的数据类型返回0。
Parameters | |
---|---|
param |
int : the first parameter is 1, the second is 2, ... |
Returns | |
---|---|
int |
scale |
Throws | |
---|---|
SQLException |
if a database access error occurs |
int isNullable (int param)
检索指定参数是否允许空值。
Parameters | |
---|---|
param |
int : the first parameter is 1, the second is 2, ... |
Returns | |
---|---|
int |
the nullability status of the given parameter; one of ParameterMetaData.parameterNoNulls , ParameterMetaData.parameterNullable , or ParameterMetaData.parameterNullableUnknown |
Throws | |
---|---|
SQLException |
if a database access error occurs |
boolean isSigned (int param)
检索指定参数的值是否可以是带符号的数字。
Parameters | |
---|---|
param |
int : the first parameter is 1, the second is 2, ... |
Returns | |
---|---|
boolean |
true if so; false otherwise |
Throws | |
---|---|
SQLException |
if a database access error occurs |