Package | Description |
---|---|
org.sqlproc.engine.impl |
The private part of the SQL Processor implementation.
|
Modifier and Type | Field and 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.
|
Modifier and Type | Method and Description |
---|---|
(package private) SqlInputValue |
SqlProcessResult.getInputValue(String name)
Returns the input value .
|
Modifier and Type | Method and 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.
|
Modifier and Type | Method and 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.
|
Modifier and Type | Method and 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) |
Constructor and Description |
---|
SqlInputValue(SqlProcessContext ctx,
String name,
SqlInputValue sqlInputValue,
Object dynamicInputValues)
Creates a new instance of this entity.
|
Copyright © 2015. All rights reserved.