*/
class P6LogStatementInvocationHandler extends GenericInvocationHandler<Statement> {
public P6LogStatementInvocationHandler(Statement underlying, final ConnectionInformation connectionInformation) {
super(underlying);
StatementInformation statementInformation = new StatementInformation(connectionInformation);
P6LogStatementExecuteDelegate executeDelegate = new P6LogStatementExecuteDelegate(statementInformation);
P6LogStatementExecuteBatchDelegate executeBatchDelegate = new P6LogStatementExecuteBatchDelegate(statementInformation);
P6LogStatementAddBatchDelegate addBatchDelegate = new P6LogStatementAddBatchDelegate(statementInformation);