public P6LogCallableStatementInvocationHandler(CallableStatement underlying,
ConnectionInformation connectionInformation,
String query) {
super(underlying);
CallableStatementInformation callableStatementInformation = new CallableStatementInformation(connectionInformation);
callableStatementInformation.setStatementQuery(query);
P6LogPreparedStatementExecuteDelegate executeDelegate = new P6LogPreparedStatementExecuteDelegate(callableStatementInformation);
P6LogPreparedStatementAddBatchDelegate addBatchDelegate = new P6LogPreparedStatementAddBatchDelegate(callableStatementInformation);
P6LogCallableStatementSetParameterValueDelegate setParameterValueDelegate = new P6LogCallableStatementSetParameterValueDelegate(callableStatementInformation);