Methods Summary |
---|
public java.lang.String | getParameterClassName(int param)Retrieves the fully-qualified name of the Java class whose instances
should be passed to the method PreparedStatement.setObject .
|
public int | getParameterCount()Retrieves the number of parameters in the PreparedStatement
object for which this ParameterMetaData object contains
information.
|
public int | getParameterMode(int param)Retrieves the designated parameter's mode.
|
public int | getParameterType(int param)Retrieves the designated parameter's SQL type.
|
public java.lang.String | getParameterTypeName(int param)Retrieves the designated parameter's database-specific type name.
|
public int | getPrecision(int param)Retrieves the designated parameter's number of decimal digits.
|
public int | getScale(int param)Retrieves the designated parameter's number of digits to right of the decimal point.
|
public int | isNullable(int param)Retrieves whether null values are allowed in the designated parameter.
|
public boolean | isSigned(int param)Retrieves whether values for the designated parameter can be signed numbers.
|