All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class interbase.interclient.ParameterMetaData

java.lang.Object
   |
   +----interbase.interclient.ParameterMetaData

public final class ParameterMetaData
extends Object
InterClient Extension

ParameterMetaData is an InterClient extension for describing the parameters to a prepared statement.

Unlike other RDBMS vendors, InterBase can describe parameter meta data for prepared statements.

See Also:
PreparedStatement, getParameterMetaData

Method Index

 o getParameterCount()
How many parameters are there?
 o getParameterType(int)
SQL Type id from java.sql.Types for input parameter.
 o getParameterTypeName(int)
Get the InterBase type name for an input parameter.
 o getPrecision(int)
Get the number of decimal digits.
 o getScale(int)
Number of digits to the right of decimal.
 o isNullable(int)
Can you put a null for this parameter?

Methods

 o getParameterCount
  public int getParameterCount() throws SQLException
How many parameters are there?

 o getParameterType
  public int getParameterType(int parameterIndex) throws SQLException
SQL Type id from java.sql.Types for input parameter.

See Also:
Types
 o getParameterTypeName
  public String getParameterTypeName(int parameterIndex) throws SQLException
Get the InterBase type name for an input parameter.

 o getPrecision
  public int getPrecision(int parameterIndex) throws SQLException
Get the number of decimal digits.

 o getScale
  public int getScale(int parameterIndex) throws SQLException
Number of digits to the right of decimal.

 o isNullable
  public boolean isNullable(int parameterIndex) throws SQLException
Can you put a null for this parameter?


All Packages  Class Hierarchy  This Package  Previous  Next  Index