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

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

Introduction

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

The text is from its open source code.

Field

intparameterNoNulls
The constant indicating that a parameter will not allow NULL values.
intparameterNullable
The constant indicating that a parameter will allow NULL values.
intparameterModeUnknown
The constant indicating that the mode of the parameter is unknown.
intparameterModeIn
The constant indicating that the parameter's mode is IN.
intparameterModeInOut
The constant indicating that the parameter's mode is INOUT.
intparameterModeOut
The constant indicating that the parameter's mode is OUT.

Method

StringgetParameterClassName(int param)
Retrieves the fully-qualified name of the Java class whose instances should be passed to the method PreparedStatement.setObject.
intgetParameterCount()
Retrieves the number of parameters in the PreparedStatement object for which this ParameterMetaData object contains information.
intgetParameterMode(int param)
Retrieves the designated parameter's mode.
intgetParameterType(int param)
Retrieves the designated parameter's SQL type.
StringgetParameterTypeName(int param)
Retrieves the designated parameter's database-specific type name.
intgetPrecision(int param)
Retrieves the designated parameter's specified column size.
intgetScale(int param)
Retrieves the designated parameter's number of digits to right of the decimal point.
intisNullable(int param)
Retrieves whether null values are allowed in the designated parameter.
booleanisSigned(int param)
Retrieves whether values for the designated parameter can be signed numbers.