Interface SqlControl.LowLevelSqlCallback

Enclosing interface:
SqlControl

public static interface SqlControl.LowLevelSqlCallback
The low level (before and after the SQL command execution) SQL callback.
  • Method Summary

    Modifier and Type
    Method
    Description
    handleInputValues(String sqlCommand, Map<String,Object> inputValues)
    Enables the input values and the final SQL command modification before the required database command execution.
    void
    Enables the output values modification after the required database command execution.
  • Method Details

    • handleInputValues

      String handleInputValues(String sqlCommand, Map<String,Object> inputValues)
      Enables the input values and the final SQL command modification before the required database command execution.
      Parameters:
      sqlCommand - the final SQL command, which can be modified
      inputValues - the input values, which can be modified
      Returns:
      in the case of not null value the modified SQL command
    • handleOutputValues

      void handleOutputValues(Map<String,Object> outputValues)
      Enables the output values modification after the required database command execution.
      Parameters:
      outputValues - the output values, which can be modified