Package com.p6spy.engine.common

Examples of com.p6spy.engine.common.StatementInformation


*/
class P6OutageStatementInvocationHandler extends GenericInvocationHandler<Statement> {

  public P6OutageStatementInvocationHandler(Statement underlying, final ConnectionInformation connectionInformation) {
    super(underlying);
    StatementInformation statementInformation = new StatementInformation(connectionInformation);

    P6OutageStatementExecuteDelegate executeDelegate = new P6OutageStatementExecuteDelegate(statementInformation);
    P6OutageStatementAddBatchDelegate addBatchDelegate = new P6OutageStatementAddBatchDelegate(statementInformation);


View Full Code Here


*/
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);

View Full Code Here

TOP

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

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.