Uses of Class
org.sqlproc.engine.impl.SqlInputValue
-
Packages that use SqlInputValue Package Description 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 Modifier and Type Field Description 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 Modifier and Type Method Description (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 Modifier and Type Method Description 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 Modifier and Type Method Description (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 Modifier and Type Method Description (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.static String
SqlUtils. handleInsertSql(Map<String,SqlInputValue> identities, String sql)
Constructors in org.sqlproc.engine.impl with parameters of type SqlInputValue Constructor Description SqlInputValue(SqlProcessContext ctx, String name, SqlInputValue sqlInputValue, Object dynamicInputValues)
Creates a new instance of this entity.
-