executeJdbc
JdbcExecutionResponse executeJdbc(JdbcExecutionRequest jdbcExecutionRequest)
Executes JDBC statements in the request.
The entire request will be executed in a single transaction, that is, if one of the statement fails, all previously executed statements will be rolled
back.
Each statement that is executed will be returned in the response with the appropriate status and result.
Depending on the type and status of the statement, the result may vary.
For UPDATE statements:
- On SUCCESS, the result will be the number of rows affected.
- On ERROR, the result will be the SQL exception, which includes the exception type and the message.
- On SKIPPED, the result will not be present, since the statement never executed.
- Parameters:
jdbcExecutionRequest - The JDBC execution request
- Returns:
- The JDBC execution response