Uses of Interface
wt.pds.StatementParameter

Packages that use StatementParameter
wt.configuration   
wt.epm.structure   
wt.epm.util   
wt.epm.workspaces   
wt.iba.value.service   
wt.part Defines WTParts and WTPartMasters ( the fundamental enterprise objects used to represent product structures composed of assemblies and components), WTPartUsageLink and WTPartConfigSpec (used to build the structures of parts and select the correct versions of parts from the structures) and the WTPartService to manage these parts. 
wt.pds Provides additional Persistent Database Services.  See PersistenceManager to fulfill most database access needs. 
wt.pds.oracle81   
wt.pds.sqlServer   
wt.pom Provides low-level, yet database independent, access to a database. 
wt.vc.baseline
 
wt.vc.config
 
 

Uses of StatementParameter in wt.configuration
 

Methods in wt.configuration that return StatementParameter
 StatementParameter[] SerialNumberedConfiguredInstanceConfigSpec.getAdditionalParameters()
          

Supported API: false
 StatementParameter[] RemoveConfigurationVisitor.getAdditionalParameters()
          

Supported API: false
 StatementParameter[] ConfigurationVisitor.getAdditionalParameters()
          

Supported API: false
 StatementParameter[] ConfigurationMemberConfigSpec.getAdditionalParameters()
          

Supported API: false
 StatementParameter[] BaselineConfigurationConfigSpec.getAdditionalParameters()
          

Supported API: false
 

Uses of StatementParameter in wt.epm.structure
 

Methods in wt.epm.structure that return StatementParameter
protected  StatementParameter[] NavigateToMasterQuery.getSQLFunctionParameters()
           
protected  StatementParameter NavigateToMasterQuery.getSQLFunctionReturnType()
           
protected  StatementParameter[] NavigateQuery.getSQLFunctionParameters()
           
protected  StatementParameter NavigateQuery.getSQLFunctionReturnType()
           
 

Uses of StatementParameter in wt.epm.util
 

Methods in wt.epm.util that return StatementParameter
protected abstract  StatementParameter[] PLSQLQuery.getSQLFunctionParameters()
          Returns an array of parameters to pass to the stored procedure.
protected abstract  StatementParameter PLSQLQuery.getSQLFunctionReturnType()
          Returns the type of parameter the stored procedure is expected to return.
 StatementParameter[] ObjectQuery.getSQLFunctionParameters()
           
 StatementParameter ObjectQuery.getSQLFunctionReturnType()
           
 

Uses of StatementParameter in wt.epm.workspaces
 

Methods in wt.epm.workspaces that return StatementParameter
protected  StatementParameter[] EPMAsStoredDelegate.prepareStmtParamForAdd(Baseline a_baseline, ArrayList a_baselineMemberInfos)
           
 

Uses of StatementParameter in wt.iba.value.service
 

Methods in wt.iba.value.service with parameters of type StatementParameter
private  void MultiObjIBAValueDBService.copyAllIBAs(String a_name, StatementParameterFactory a_factory, StatementParameter a_returnValue, IdOidObjectList a_copyList)
           
 

Uses of StatementParameter in wt.part
 

Fields in wt.part declared as StatementParameter
private static StatementParameter WTProductConfigurationConfigurationDelegate.linkTablesParameter
           
private static StatementParameter WTProductConfigurationConfigurationDelegate.partTablesParameter
           
private static StatementParameter WTProductConfigurationConfigurationDelegate.serialNumberedClassesParameter
           
 

Uses of StatementParameter in wt.pds
 

Subinterfaces of StatementParameter in wt.pds
 interface DatastoreTypeStatementParameter
          

Supported API: false

Extendable: false
 

Classes in wt.pds that implement StatementParameter
 class AbstractArrayStatementParameter
          This class is used to pass an Array of values to a Statement as a parameter.
 class AbstractStructStatementParameter
          This class is used to pass an structure of values to a Statement as a parameter.
 class BasicStatementParameter
          This class implements a basic statement parameter for a simple value.
 class BasicTypedStatementParameter
          This class implements a basic statement parameter for a simple value that is specifically typed.
 class EncodedStatementParameter
          This class implements a StatementParameter for Datastore types that encodes the values as a character string.
 

Methods in wt.pds that return StatementParameter
 StatementParameter StatementParameterFactory.newStatementParameter(Object a_value)
          This method create a new StatementParameter instance using the specified object value.
 StatementParameter StatementParameterFactory.newStatementParameter(Object a_value, int a_sqlType)
          This method create a new StatementParameter instance using the specified object value and SQL type.
abstract  StatementParameter StatementParameterFactory.newStructStatementParameter(String a_structTypeName, Object a_value)
          This method create a new structure StatementParameter instance using the specified structure type name and object value.
abstract  StatementParameter StatementParameterFactory.newArrayStatementParameter(String a_arrayTypeName, Object a_value)
          This method create a new array StatementParameter instance using the specified array type name and object value.
abstract  StatementParameter StatementParameterFactory.newArrayStatementParameter(String a_arrayTypeName, Object a_value, String a_structTypeName)
          This method create a new array StatementParameter instance using the specified array type name and object value.
 StatementParameter[] StatementParameterFactory.newStatementParameterArray(Object[] a_values)
          Creates a new array of StatementParameters from raw values or DatastoreType instances.
 StatementParameter[] StatementParameterFactory.newStatementParameterArray(Object[] a_values, int[] a_sqlTypes)
          Creates a new array of StatementParameters from raw values and SQL types.
 StatementParameter StatementParameterFactory.newStatementParameter(Object a_value, ClassInfo a_datastoreType)
          This method create a new StatementParameter instance using the specified datastore type and object value.
 StatementParameter StatementParameterFactory.newStatementParameter(DatastoreType a_value)
          This method create a new StatementParameter instance using the specified object value.
 

Methods in wt.pds with parameters of type StatementParameter
(package private) static boolean StatementParameterFactory.isTypeParameter(StatementParameter[] a_parameters)
           
 Object SQLDatabasePds.executeCall(WTConnection a_connection, String a_procedureName, StatementParameter[] a_argumentValues, StatementParameter a_outputType)
          This method executes a call to a database stored procedure.
 Object PDSIfc.executeCall(WTConnection a_connection, String a_procedureName, StatementParameter[] a_argumentValues, StatementParameter a_outputType)
          This method executes a call to a database stored procedure.
 

Uses of StatementParameter in wt.pds.oracle81
 

Classes in wt.pds.oracle81 that implement StatementParameter
 class ArrayStatementParameter
          This class is used to pass an Array of values to a Statement as a parameter.
 class StructStatementParameter
          This class is used to pass an structure of values to a Statement as a parameter.
 

Methods in wt.pds.oracle81 that return StatementParameter
 StatementParameter OracleStatementParameterFactory.newStructStatementParameter(String a_structTypeName, Object a_value)
          This method create a new structure StatementParameter instance using the specified structure type name and object value.
 StatementParameter OracleStatementParameterFactory.newArrayStatementParameter(String a_arrayTypeName, Object a_value)
          This method create a new array StatementParameter instance using the specified array type name and object value.
 StatementParameter OracleStatementParameterFactory.newArrayStatementParameter(String a_arrayTypeName, Object a_value, String a_structTypeName)
          This method create a new array StatementParameter instance using the specified array type name and object value.
 

Uses of StatementParameter in wt.pds.sqlServer
 

Classes in wt.pds.sqlServer that implement StatementParameter
 class SQLServerArrayStatementParameter
          This class implements an array type for passing parameters to statements.
 class SQLServerStructStatementParameter
          This class implements a struct type for passing parameters to statements.
 

Methods in wt.pds.sqlServer that return StatementParameter
 StatementParameter SQLServerStatementParameterFactory.newStructStatementParameter(String a_structTypeName, Object a_value)
          This method create a new structure StatementParameter instance using the specified structure type name and object value.
 StatementParameter SQLServerStatementParameterFactory.newArrayStatementParameter(String a_arrayTypeName, Object a_value)
          This method create a new array StatementParameter instance using the specified array type name and object value.
 StatementParameter SQLServerStatementParameterFactory.newArrayStatementParameter(String a_arrayTypeName, Object a_value, String a_structTypeName)
          This method create a new array StatementParameter instance using the specified array type name and object value.
 

Uses of StatementParameter in wt.pom
 

Methods in wt.pom with parameters of type StatementParameter
 Object PersistentObjectManager.executeCall(String a_procedureName, StatementParameter[] a_argumentValues, StatementParameter a_outputType)
          This method executes a call to a database stored procedure.
 

Uses of StatementParameter in wt.vc.baseline
 

Classes in wt.vc.baseline that implement StatementParameter
 class BaselineMemberTupleArrayStatement
          

Supported API: false

Extendable: false
 

Methods in wt.vc.baseline that return StatementParameter
private  StatementParameter StandardBaselineService.getRowParameter(ObjectIdentifier oid)
           
protected  StatementParameter[] StandardBaselineDelegate.prepareStmtParamForAdd(Baseline a_baseline, ArrayList a_baselineMemberInfos)
           
protected  StatementParameter[] StandardBaselineDelegate.prepareStmtParamForReplace(Baseline a_baseline, ArrayList replacementInfo)
           
protected  StatementParameter[] StandardBaselineDelegate.prepareStmtParamForRemove(ArrayList baselineMembers)
           
protected  StatementParameter[] IteratedPartialBaselineDelegate.prepareStmtParamForReplace(Baseline a_baseline, ArrayList replacementInfo)
           
protected  StatementParameter[] IteratedPartialBaselineDelegate.prepareStmtParamForRemove(Baseline a_baseline, ArrayList a_baselineMembers)
           
 

Methods in wt.vc.baseline with parameters of type StatementParameter
protected  boolean StandardBaselineDelegate.executeCall(String functionName, StatementParameter[] procArgs)
          This method invokes the proper stored procedure to add/replace/remove baselinemember links procArgs must be set up as StatementParameters by the calling method Return value indicates success or failure
 

Uses of StatementParameter in wt.vc.config
 

Methods in wt.vc.config that return StatementParameter
 StatementParameter[] SQLFunctionConfigSpec.getAdditionalParameters()
          

Supported API: false
 StatementParameter[] BaselineConfigSpec.getAdditionalParameters()
          

Supported API: false