Package org.sqlproc.engine
Interface SqlControl.SqlExecutionCallback
-
- Enclosing interface:
- SqlControl
public static interface SqlControl.SqlExecutionCallbackThe SQL command execution callback (before and after the SQL command execution).
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidhandleInputValues(Object inputValues)Enables the input values and the final SQL command modification before the required database command execution.voidhandleOutputValues(Object outputValues)Enables the output values modification after the required database command execution.
-
-
-
Method Detail
-
handleInputValues
void handleInputValues(Object inputValues)
Enables the input values and the final SQL command modification before the required database command execution.- Parameters:
inputValues- the input values, which can be modified
-
handleOutputValues
void handleOutputValues(Object outputValues)
Enables the output values modification after the required database command execution.- Parameters:
outputValues- the output values, which can be modified
-
-