Package com.p6spy.engine.common

Examples of com.p6spy.engine.common.ResultSetInformation


   */
  public P6LogResultSetInvocationHandler(final ResultSet underlying, final StatementInformation statementInformation)
      throws SQLException {
    super(underlying);

    ResultSetInformation resultSetInformation = new ResultSetInformation(statementInformation);
    P6LogResultSetNextDelegate nextDelegate = new P6LogResultSetNextDelegate(resultSetInformation);
    P6LogResultSetCloseDelegate closeDelegate = new P6LogResultSetCloseDelegate(resultSetInformation);
    P6LogResultSetGetColumnValueDelegate getColumnValueDelegate = new P6LogResultSetGetColumnValueDelegate(resultSetInformation);

    addDelegate(
View Full Code Here

TOP

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

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.