Package com.p6spy.engine.common

Examples of com.p6spy.engine.common.CallableStatementInformation


  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);
View Full Code Here

TOP

Related Classes of com.p6spy.engine.common.CallableStatementInformation

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.