|
Oracle Fusion Middleware Java API Reference for Oracle ADF Mobile Client 11g Release 1 (11.1.1) E17503-02 |
||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
public interface ParameterMetaData
An interface used to get information about the types and properties of parameters in a PreparedStatement object.
| Field Summary | |
|---|---|
static java.lang.Class |
CLASS_INSTANCE
|
static int |
parameterModeIn
Indicates that the parameter mode is IN. |
static int |
parameterModeInOut
Indicates that the parameter mode is INOUT. |
static int |
parameterModeOut
Indicates that the parameter mode is OUT. |
static int |
parameterModeUnknown
Indicates that the parameter mode is not known. |
static int |
parameterNoNulls
Indicates that a parameter is not permitted to be NULL. |
static int |
parameterNullable
Indicates that a parameter is permitted to be NULL. |
static int |
parameterNullableUnknown
Indicates that whether a parameter is allowed to be null or not is not known. |
| Method Summary | |
|---|---|
java.lang.String |
getParameterClassName(int paramIndex)
Gets the fully-qualified name of the Java class which should be passed as a parameter to the method PreparedStatement.setObject. |
int |
getParameterCount()
Gets the number of parameters in the PreparedStatement for which this ParameterMetaData contains information. |
int |
getParameterMode(int paramIndex)
Gets the mode of the specified parameter. |
int |
getParameterType(int paramIndex)
Gets the SQL type of a specified parameter. |
java.lang.String |
getParameterTypeName(int paramIndex)
Gets the database-specific type name of a specified parameter. |
int |
getPrecision(int paramIndex)
Gets the number of decimal digits for a specified parameter. |
int |
getScale(int paramIndex)
Gets the number of digits after the decimal point for a specified parameter. |
int |
isNullable(int paramIndex)
Gets whether null values are allowed for the specified parameter. |
boolean |
isSigned(int paramIndex)
Gets whether values for the specified parameter can be signed numbers. |
| Field Detail |
|---|
static final java.lang.Class CLASS_INSTANCE
static final int parameterModeIn
static final int parameterModeInOut
static final int parameterModeOut
static final int parameterModeUnknown
static final int parameterNoNulls
static final int parameterNullable
static final int parameterNullableUnknown
| Method Detail |
|---|
java.lang.String getParameterClassName(int paramIndex)
throws SQLException
PreparedStatement.setObject.
paramIndex - the index number of the parameter, where the first parameter has an index of 1
SQLException - if a database error happens
int getParameterCount()
throws SQLException
SQLException - if a database error happens
int getParameterMode(int paramIndex)
throws SQLException
paramIndex - the index number of the parameter, where the first parameter has an index of 1
SQLException - if a database error happens
int getParameterType(int paramIndex)
throws SQLException
paramIndex - the index number of the parameter, where the first parameter has an index of 1
SQLException - if a database error happens
java.lang.String getParameterTypeName(int paramIndex)
throws SQLException
paramIndex - the index number of the parameter, where the first parameter has an index of 1
SQLException - if a database error happens
int getPrecision(int paramIndex)
throws SQLException
paramIndex - the index number of the parameter, where the first parameter has an index of 1
SQLException - if a database error happens
int getScale(int paramIndex)
throws SQLException
paramIndex - the index number of the parameter, where the first parameter has an index of 1
SQLException - if a database error happens
int isNullable(int paramIndex)
throws SQLException
paramIndex - the index number of the parameter, where the first parameter has an index of 1
SQLException - if a database error is encountered
boolean isSigned(int paramIndex)
throws SQLException
paramIndex - the index number of the parameter, where the first parameter has an index of 1
SQLException - if a database error happens
|
Oracle Fusion Middleware Java API Reference for Oracle ADF Mobile Client 11g Release 1 (11.1.1) E17503-02 |
||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||