com.ibm.dse.services.jdbc
Class StoredProcMetaData

java.lang.Object
  |
  +--com.ibm.dse.services.jdbc.StoredProcMetaData

public class StoredProcMetaData
extends java.lang.Object

The StoredProcMetadata class maintains the information concerning the columns for a specific stored procedure.


Field Summary
protected  int counterIn
          Keeps the number of in parameters of the store procedure.
protected  int counterInOut
          Keeps the number of inout parameters of the store procedure.
protected  int counterOut
          Keeps the number of out parameters of the store procedure.
protected static int maxInOutParameters
          Keeps the maximum number of inout parameters of the store procedure.
protected static int maxInParameters
          Keeps the maximum number of in parameters of the store procedure.
protected static int maxOutParameters
          Keeps the maximum number of out parameters of the store procedure.
protected  StoredProcParameter[] parametersIn
          Keeps the in parameters of store procedure
protected  StoredProcParameter[] parametersInOut
          Keeps the inout parameters of store procedure
protected  StoredProcParameter[] parametersOut
          Keeps the out parameters of store procedure
 
Constructor Summary
StoredProcMetaData()
          This constructor creates a StoredProcMetaData object.
 
Method Summary
protected  int getNumberOfParameters()
          Gets the total number of parameters of the stored procedure
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

maxInParameters

protected static final int maxInParameters
Keeps the maximum number of in parameters of the store procedure.

maxInOutParameters

protected static final int maxInOutParameters
Keeps the maximum number of inout parameters of the store procedure.

maxOutParameters

protected static final int maxOutParameters
Keeps the maximum number of out parameters of the store procedure.

counterIn

protected int counterIn
Keeps the number of in parameters of the store procedure.

counterInOut

protected int counterInOut
Keeps the number of inout parameters of the store procedure.

counterOut

protected int counterOut
Keeps the number of out parameters of the store procedure.

parametersIn

protected StoredProcParameter[] parametersIn
Keeps the in parameters of store procedure

parametersInOut

protected StoredProcParameter[] parametersInOut
Keeps the inout parameters of store procedure

parametersOut

protected StoredProcParameter[] parametersOut
Keeps the out parameters of store procedure
Constructor Detail

StoredProcMetaData

public StoredProcMetaData()
This constructor creates a StoredProcMetaData object.
Method Detail

getNumberOfParameters

protected int getNumberOfParameters()
Gets the total number of parameters of the stored procedure
Returns:
int