prepareCall(executionInput, callableStatement);
callableStatement.execute();
callableStatement.setQueryTimeout(10);
if (!usePoolConnection) connectionHandler.notifyChanges(method.getVirtualFile());
MethodExecutionResult executionResult = executionInput.getExecutionResult();
if (executionResult != null) {
loadValues(executionResult, callableStatement);
executionResult.setExecutionDuration((int) (System.currentTimeMillis() - startTime));
}
}
} finally {
if (executionInput.isCommitAfterExecution()) {