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.identitiesList of all identities, which have values generated using sequences.private Map<String, SqlInputValue> SqlProcessResult.inputValuesThe map of dynamic input values.private Map<String, SqlInputValue> SqlProcessResult.outValuesList 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) SqlInputValueSqlProcessResult.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) voidSqlProcessResult.addIdentity(String key, SqlInputValue value) Adds a new identity.(package private) voidSqlProcessResult.addInputValue(String key, SqlInputValue value) Adds a new dynamic input value.(package private) voidSqlProcessResult.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) voidSqlProcessResult.addIdentities(Map<String, SqlInputValue> identities) Adds a new collection of identities.(package private) voidSqlProcessResult.addMappedInputValues(Map<String, SqlInputValue> inputValues) Adds a new collection of dynamic input values.(package private) voidSqlProcessResult.addOutValues(Map<String, SqlInputValue> outValues) Adds a new collection of OUT/INOUT values.static StringSqlUtils.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.