Uses of Class
org.sqlproc.engine.impl.SqlInputValue
Packages that use SqlInputValue
-
Uses of SqlInputValue in org.sqlproc.engine.impl
Fields in org.sqlproc.engine.impl with type parameters of type SqlInputValueModifier and TypeFieldDescriptionprivate 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 SqlInputValueModifier and TypeMethodDescription(package private) SqlInputValue
SqlProcessResult.getInputValue
(String name) Returns the input value .Methods in org.sqlproc.engine.impl that return types with arguments of type SqlInputValueModifier and TypeMethodDescriptionSqlProcessResult.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 SqlInputValueModifier and TypeMethodDescription(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 SqlInputValueModifier and TypeMethodDescription(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 SqlInputValueModifierConstructorDescription(package private)
SqlInputValue
(SqlProcessContext ctx, String name, SqlInputValue sqlInputValue, Object dynamicInputValues) Creates a new instance of this entity.