Uses of Class
org.sqlproc.engine.impl.SqlInputValue

Packages that use SqlInputValue
org.sqlproc.engine.impl The private part of the SQL Processor implementation. 
 

Uses of SqlInputValue in org.sqlproc.engine.impl
 

Fields in org.sqlproc.engine.impl with type parameters of type SqlInputValue
private  Map<String,SqlInputValue> SqlProcessResult.identities
          List of all identities, which have values generated using sequences.
private  Map<String,SqlInputValue> SqlProcessResult.inputValues
          The map of dynamic input values.
private  Map<String,SqlInputValue> SqlProcessResult.outValues
          List of all input values, which are in fact OUT or INOUT parameters.
 

Methods in org.sqlproc.engine.impl that return SqlInputValue
(package private)  SqlInputValue SqlProcessResult.getInputValue(String name)
          Returns the input value .
 

Methods in org.sqlproc.engine.impl that return types with arguments of type SqlInputValue
(package private)  Map<String,SqlInputValue> SqlProcessResult.getIdentities()
          Returns the collection of identities.
(package private)  Map<String,SqlInputValue> SqlProcessResult.getMappedInputValues()
          Returns the collection of dynamic input values.
(package private)  Map<String,SqlInputValue> SqlProcessResult.getOutValues()
          Returns the collection of OUT/INOUT values.
 

Methods in org.sqlproc.engine.impl with parameters of type SqlInputValue
(package private)  void SqlProcessResult.addIdentity(String key, SqlInputValue value)
          Adds a new identity.
(package private)  void SqlProcessResult.addInputValue(String key, SqlInputValue value)
          Adds a new dynamic input value.
(package private)  void SqlProcessResult.addOutValue(String key, SqlInputValue value)
          Adds a new OUT/INOUT value.
 

Method parameters in org.sqlproc.engine.impl with type arguments of type SqlInputValue
(package private)  void SqlProcessResult.addIdentities(Map<String,SqlInputValue> identities)
          Adds a new collection of identities.
(package private)  void SqlProcessResult.addMappedInputValues(Map<String,SqlInputValue> inputValues)
          Adds a new collection of dynamic input values.
(package private)  void SqlProcessResult.addOutValues(Map<String,SqlInputValue> outValues)
          Adds a new collection of OUT/INOUT values.
 



Copyright © 2011. All Rights Reserved.