Java.Sql.IParameterMetaData Members

The members of Java.Sql.IParameterMetaData are listed below.

Public Properties

[read-only]
ParameterCountint. Gets the number of parameters in the PreparedStatement for which this ParameterMetaData contains information.

Public Methods

GetParameterClassName(int) : string
Gets the fully-qualified name of the Java class which should be passed as a parameter to the method PreparedStatement.setObject.
GetParameterMode(int) : int
Gets the mode of the specified parameter.
GetParameterType(int) : int
Gets the SQL type of a specified parameter.
GetParameterTypeName(int) : string
Gets the database-specific type name of a specified parameter.
GetPrecision(int) : int
Gets the number of decimal digits for a specified parameter.
GetScale(int) : int
Gets the number of digits after the decimal point for a specified parameter.
IsNullable(int) : int
Gets whether null values are allowed for the specified parameter.
IsSigned(int) : bool
Gets whether values for the specified parameter can be signed numbers.