public class org.apache.commons.dbcp2.DelegatingConnection<C extends java.sql.Connection> extends org.apache.commons.dbcp2.AbandonedTrace implements java.sql.Connection
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.commons.dbcp2.DelegatingConnection
  super_class: org.apache.commons.dbcp2.AbandonedTrace
{
  private static final java.util.Map<java.lang.String, java.sql.ClientInfoStatus> EMPTY_FAILED_PROPERTIES;
    descriptor: Ljava/util/Map;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    Signature: Ljava/util/Map<Ljava/lang/String;Ljava/sql/ClientInfoStatus;>;

  private volatile C connection;
    descriptor: Ljava/sql/Connection;
    flags: (0x0042) ACC_PRIVATE, ACC_VOLATILE
    Signature: TC;

  private volatile boolean closed;
    descriptor: Z
    flags: (0x0042) ACC_PRIVATE, ACC_VOLATILE

  private boolean cacheState;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private java.lang.Boolean autoCommitCached;
    descriptor: Ljava/lang/Boolean;
    flags: (0x0002) ACC_PRIVATE

  private java.lang.Boolean readOnlyCached;
    descriptor: Ljava/lang/Boolean;
    flags: (0x0002) ACC_PRIVATE

  private java.lang.Integer defaultQueryTimeoutSeconds;
    descriptor: Ljava/lang/Integer;
    flags: (0x0002) ACC_PRIVATE

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 65
            invokestatic java.util.Collections.emptyMap:()Ljava/util/Map;
         1: .line 64
            putstatic org.apache.commons.dbcp2.DelegatingConnection.EMPTY_FAILED_PROPERTIES:Ljava/util/Map;
         2: .line 65
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>();
    descriptor: (Ljava/sql/Connection;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.dbcp2.DelegatingConnection this
        start local 1 // java.sql.Connection c
         0: .line 84
            aload 0 /* this */
            invokespecial org.apache.commons.dbcp2.AbandonedTrace.<init>:()V
         1: .line 72
            aload 0 /* this */
            iconst_1
            putfield org.apache.commons.dbcp2.DelegatingConnection.cacheState:Z
         2: .line 85
            aload 0 /* this */
            aload 1 /* c */
            putfield org.apache.commons.dbcp2.DelegatingConnection.connection:Ljava/sql/Connection;
         3: .line 86
            return
        end local 1 // java.sql.Connection c
        end local 0 // org.apache.commons.dbcp2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/apache/commons/dbcp2/DelegatingConnection<TC;>;
            0    4     1     c  TC;
    Signature: (TC;)V
    MethodParameters:
      Name  Flags
      c     final

  public synchronized java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=5, args_size=1
        start local 0 // org.apache.commons.dbcp2.DelegatingConnection this
         0: .line 94
            aconst_null
            astore 1 /* str */
        start local 1 // java.lang.String str
         1: .line 96
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.getInnermostDelegateInternal:()Ljava/sql/Connection;
            astore 2 /* conn */
        start local 2 // java.sql.Connection conn
         2: .line 97
            aload 2 /* conn */
            ifnull 19
         3: .line 99
            aload 2 /* conn */
            invokeinterface java.sql.Connection.isClosed:()Z
            ifeq 6
         4: .line 100
            ldc "connection is closed"
            astore 1 /* str */
         5: .line 101
            goto 19
         6: .line 102
      StackMap locals: java.lang.String java.sql.Connection
      StackMap stack:
            new java.lang.StringBuffer
            dup
            invokespecial java.lang.StringBuffer.<init>:()V
            astore 3 /* sb */
        start local 3 // java.lang.StringBuffer sb
         7: .line 103
            aload 3 /* sb */
            aload 0 /* this */
            invokevirtual java.lang.Object.hashCode:()I
            invokevirtual java.lang.StringBuffer.append:(I)Ljava/lang/StringBuffer;
            pop
         8: .line 104
            aload 2 /* conn */
            invokeinterface java.sql.Connection.getMetaData:()Ljava/sql/DatabaseMetaData;
            astore 4 /* meta */
        start local 4 // java.sql.DatabaseMetaData meta
         9: .line 105
            aload 4 /* meta */
            ifnull 19
        10: .line 106
            aload 3 /* sb */
            ldc ", URL="
            invokevirtual java.lang.StringBuffer.append:(Ljava/lang/String;)Ljava/lang/StringBuffer;
            pop
        11: .line 107
            aload 3 /* sb */
            aload 4 /* meta */
            invokeinterface java.sql.DatabaseMetaData.getURL:()Ljava/lang/String;
            invokevirtual java.lang.StringBuffer.append:(Ljava/lang/String;)Ljava/lang/StringBuffer;
            pop
        12: .line 108
            aload 3 /* sb */
            ldc ", UserName="
            invokevirtual java.lang.StringBuffer.append:(Ljava/lang/String;)Ljava/lang/StringBuffer;
            pop
        13: .line 109
            aload 3 /* sb */
            aload 4 /* meta */
            invokeinterface java.sql.DatabaseMetaData.getUserName:()Ljava/lang/String;
            invokevirtual java.lang.StringBuffer.append:(Ljava/lang/String;)Ljava/lang/StringBuffer;
            pop
        14: .line 110
            aload 3 /* sb */
            ldc ", "
            invokevirtual java.lang.StringBuffer.append:(Ljava/lang/String;)Ljava/lang/StringBuffer;
            pop
        15: .line 111
            aload 3 /* sb */
            aload 4 /* meta */
            invokeinterface java.sql.DatabaseMetaData.getDriverName:()Ljava/lang/String;
            invokevirtual java.lang.StringBuffer.append:(Ljava/lang/String;)Ljava/lang/StringBuffer;
            pop
        16: .line 112
            aload 3 /* sb */
            invokevirtual java.lang.StringBuffer.toString:()Ljava/lang/String;
            astore 1 /* str */
        end local 4 // java.sql.DatabaseMetaData meta
        end local 3 // java.lang.StringBuffer sb
        17: .line 115
            goto 19
      StackMap locals:
      StackMap stack: java.sql.SQLException
        18: pop
        19: .line 119
      StackMap locals:
      StackMap stack:
            aload 1 /* str */
            ifnull 20
            aload 1 /* str */
            goto 21
      StackMap locals:
      StackMap stack:
        20: aload 0 /* this */
            invokespecial java.lang.Object.toString:()Ljava/lang/String;
      StackMap locals:
      StackMap stack: java.lang.String
        21: areturn
        end local 2 // java.sql.Connection conn
        end local 1 // java.lang.String str
        end local 0 // org.apache.commons.dbcp2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   22     0  this  Lorg/apache/commons/dbcp2/DelegatingConnection<TC;>;
            1   22     1   str  Ljava/lang/String;
            2   22     2  conn  Ljava/sql/Connection;
            7   17     3    sb  Ljava/lang/StringBuffer;
            9   17     4  meta  Ljava/sql/DatabaseMetaData;
      Exception table:
        from    to  target  type
           3    17      18  Class java.sql.SQLException

  public C getDelegate();
    descriptor: ()Ljava/sql/Connection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.dbcp2.DelegatingConnection this
         0: .line 128
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.getDelegateInternal:()Ljava/sql/Connection;
            areturn
        end local 0 // org.apache.commons.dbcp2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/dbcp2/DelegatingConnection<TC;>;
    Signature: ()TC;

  protected final C getDelegateInternal();
    descriptor: ()Ljava/sql/Connection;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.dbcp2.DelegatingConnection this
         0: .line 132
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.connection:Ljava/sql/Connection;
            areturn
        end local 0 // org.apache.commons.dbcp2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/dbcp2/DelegatingConnection<TC;>;
    Signature: ()TC;

  public boolean innermostDelegateEquals(java.sql.Connection);
    descriptor: (Ljava/sql/Connection;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.apache.commons.dbcp2.DelegatingConnection this
        start local 1 // java.sql.Connection c
         0: .line 144
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.getInnermostDelegateInternal:()Ljava/sql/Connection;
            astore 2 /* innerCon */
        start local 2 // java.sql.Connection innerCon
         1: .line 145
            aload 2 /* innerCon */
            ifnonnull 4
         2: .line 146
            aload 1 /* c */
            ifnonnull 3
            iconst_1
            ireturn
      StackMap locals: java.sql.Connection
      StackMap stack:
         3: iconst_0
            ireturn
         4: .line 148
      StackMap locals:
      StackMap stack:
            aload 2 /* innerCon */
            aload 1 /* c */
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ireturn
        end local 2 // java.sql.Connection innerCon
        end local 1 // java.sql.Connection c
        end local 0 // org.apache.commons.dbcp2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lorg/apache/commons/dbcp2/DelegatingConnection<TC;>;
            0    5     1         c  Ljava/sql/Connection;
            1    5     2  innerCon  Ljava/sql/Connection;
    MethodParameters:
      Name  Flags
      c     final

  public java.sql.Connection getInnermostDelegate();
    descriptor: ()Ljava/sql/Connection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.dbcp2.DelegatingConnection this
         0: .line 166
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.getInnermostDelegateInternal:()Ljava/sql/Connection;
            areturn
        end local 0 // org.apache.commons.dbcp2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/dbcp2/DelegatingConnection<TC;>;

  public final java.sql.Connection getInnermostDelegateInternal();
    descriptor: ()Ljava/sql/Connection;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.apache.commons.dbcp2.DelegatingConnection this
         0: .line 177
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.connection:Ljava/sql/Connection;
            astore 1 /* conn */
        start local 1 // java.sql.Connection conn
         1: .line 178
            goto 5
         2: .line 179
      StackMap locals: java.sql.Connection
      StackMap stack:
            aload 1 /* conn */
            checkcast org.apache.commons.dbcp2.DelegatingConnection
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.getDelegateInternal:()Ljava/sql/Connection;
            astore 1 /* conn */
         3: .line 180
            aload 0 /* this */
            aload 1 /* conn */
            if_acmpne 5
         4: .line 181
            aconst_null
            areturn
         5: .line 178
      StackMap locals:
      StackMap stack:
            aload 1 /* conn */
            ifnull 6
            aload 1 /* conn */
            instanceof org.apache.commons.dbcp2.DelegatingConnection
            ifne 2
         6: .line 184
      StackMap locals:
      StackMap stack:
            aload 1 /* conn */
            areturn
        end local 1 // java.sql.Connection conn
        end local 0 // org.apache.commons.dbcp2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/apache/commons/dbcp2/DelegatingConnection<TC;>;
            1    7     1  conn  Ljava/sql/Connection;

  public void setDelegate();
    descriptor: (Ljava/sql/Connection;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.dbcp2.DelegatingConnection this
        start local 1 // java.sql.Connection connection
         0: .line 194
            aload 0 /* this */
            aload 1 /* connection */
            putfield org.apache.commons.dbcp2.DelegatingConnection.connection:Ljava/sql/Connection;
         1: .line 195
            return
        end local 1 // java.sql.Connection connection
        end local 0 // org.apache.commons.dbcp2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lorg/apache/commons/dbcp2/DelegatingConnection<TC;>;
            0    2     1  connection  TC;
    Signature: (TC;)V
    MethodParameters:
            Name  Flags
      connection  final

  public void close();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.dbcp2.DelegatingConnection this
         0: .line 208
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.closed:Z
            ifne 2
         1: .line 209
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.closeInternal:()V
         2: .line 211
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.apache.commons.dbcp2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/commons/dbcp2/DelegatingConnection<TC;>;
    Exceptions:
      throws java.sql.SQLException

  protected boolean isClosedInternal();
    descriptor: ()Z
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.dbcp2.DelegatingConnection this
         0: .line 214
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.closed:Z
            ireturn
        end local 0 // org.apache.commons.dbcp2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/dbcp2/DelegatingConnection<TC;>;

  protected void setClosedInternal(boolean);
    descriptor: (Z)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.dbcp2.DelegatingConnection this
        start local 1 // boolean closed
         0: .line 218
            aload 0 /* this */
            iload 1 /* closed */
            putfield org.apache.commons.dbcp2.DelegatingConnection.closed:Z
         1: .line 219
            return
        end local 1 // boolean closed
        end local 0 // org.apache.commons.dbcp2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lorg/apache/commons/dbcp2/DelegatingConnection<TC;>;
            0    2     1  closed  Z
    MethodParameters:
        Name  Flags
      closed  final

  protected final void closeInternal();
    descriptor: ()V
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=2, locals=4, args_size=1
        start local 0 // org.apache.commons.dbcp2.DelegatingConnection this
         0: .line 223
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.passivate:()V
         1: .line 224
            goto 18
      StackMap locals:
      StackMap stack: java.lang.Throwable
         2: astore 1
         3: .line 225
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.connection:Ljava/sql/Connection;
            ifnull 16
         4: .line 228
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.connection:Ljava/sql/Connection;
            invokeinterface java.sql.Connection.isClosed:()Z
            istore 2 /* connectionIsClosed */
        start local 2 // boolean connectionIsClosed
         5: .line 229
            goto 8
        end local 2 // boolean connectionIsClosed
      StackMap locals: org.apache.commons.dbcp2.DelegatingConnection java.lang.Throwable
      StackMap stack: java.sql.SQLException
         6: pop
         7: .line 231
            iconst_0
            istore 2 /* connectionIsClosed */
        start local 2 // boolean connectionIsClosed
         8: .line 237
      StackMap locals: int
      StackMap stack:
            iload 2 /* connectionIsClosed */
            ifne 14
         9: .line 238
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.connection:Ljava/sql/Connection;
            invokeinterface java.sql.Connection.close:()V
        10: .line 240
            goto 14
      StackMap locals:
      StackMap stack: java.lang.Throwable
        11: astore 3
        12: .line 241
            aload 0 /* this */
            iconst_1
            putfield org.apache.commons.dbcp2.DelegatingConnection.closed:Z
        13: .line 242
            aload 3
            athrow
        14: .line 241
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield org.apache.commons.dbcp2.DelegatingConnection.closed:Z
        end local 2 // boolean connectionIsClosed
        15: .line 243
            goto 17
        16: .line 244
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield org.apache.commons.dbcp2.DelegatingConnection.closed:Z
        17: .line 246
      StackMap locals:
      StackMap stack:
            aload 1
            athrow
        18: .line 225
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.connection:Ljava/sql/Connection;
            ifnull 31
        19: .line 228
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.connection:Ljava/sql/Connection;
            invokeinterface java.sql.Connection.isClosed:()Z
            istore 2 /* connectionIsClosed */
        start local 2 // boolean connectionIsClosed
        20: .line 229
            goto 23
        end local 2 // boolean connectionIsClosed
      StackMap locals:
      StackMap stack: java.sql.SQLException
        21: pop
        22: .line 231
            iconst_0
            istore 2 /* connectionIsClosed */
        start local 2 // boolean connectionIsClosed
        23: .line 237
      StackMap locals: org.apache.commons.dbcp2.DelegatingConnection top int
      StackMap stack:
            iload 2 /* connectionIsClosed */
            ifne 29
        24: .line 238
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.connection:Ljava/sql/Connection;
            invokeinterface java.sql.Connection.close:()V
        25: .line 240
            goto 29
      StackMap locals:
      StackMap stack: java.lang.Throwable
        26: astore 3
        27: .line 241
            aload 0 /* this */
            iconst_1
            putfield org.apache.commons.dbcp2.DelegatingConnection.closed:Z
        28: .line 242
            aload 3
            athrow
        29: .line 241
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield org.apache.commons.dbcp2.DelegatingConnection.closed:Z
        end local 2 // boolean connectionIsClosed
        30: .line 243
            goto 32
        31: .line 244
      StackMap locals: org.apache.commons.dbcp2.DelegatingConnection
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield org.apache.commons.dbcp2.DelegatingConnection.closed:Z
        32: .line 247
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.apache.commons.dbcp2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0   33     0                this  Lorg/apache/commons/dbcp2/DelegatingConnection<TC;>;
            5    6     2  connectionIsClosed  Z
            8   15     2  connectionIsClosed  Z
           20   21     2  connectionIsClosed  Z
           23   30     2  connectionIsClosed  Z
      Exception table:
        from    to  target  type
           0     2       2  any
           4     5       6  Class java.sql.SQLException
           8    11      11  any
          19    20      21  Class java.sql.SQLException
          23    26      26  any
    Exceptions:
      throws java.sql.SQLException

  protected void handleException(java.sql.SQLException);
    descriptor: (Ljava/sql/SQLException;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // org.apache.commons.dbcp2.DelegatingConnection this
        start local 1 // java.sql.SQLException e
         0: .line 250
            aload 1 /* e */
            athrow
        end local 1 // java.sql.SQLException e
        end local 0 // org.apache.commons.dbcp2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/dbcp2/DelegatingConnection<TC;>;
            0    1     1     e  Ljava/sql/SQLException;
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
      Name  Flags
      e     final

  protected <T extends java.lang.Throwable> T handleExceptionNoThrow();
    descriptor: (Ljava/lang/Throwable;)Ljava/lang/Throwable;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // org.apache.commons.dbcp2.DelegatingConnection this
        start local 1 // java.lang.Throwable e
         0: .line 262
            aload 1 /* e */
            areturn
        end local 1 // java.lang.Throwable e
        end local 0 // org.apache.commons.dbcp2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/dbcp2/DelegatingConnection<TC;>;
            0    1     1     e  TT;
    Signature: <T:Ljava/lang/Throwable;>(TT;)TT;
    MethodParameters:
      Name  Flags
      e     final

  private void initializeStatement(org.apache.commons.dbcp2.DelegatingStatement);
    descriptor: (Lorg/apache/commons/dbcp2/DelegatingStatement;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.dbcp2.DelegatingConnection this
        start local 1 // org.apache.commons.dbcp2.DelegatingStatement ds
         0: .line 266
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.defaultQueryTimeoutSeconds:Ljava/lang/Integer;
            ifnull 2
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.defaultQueryTimeoutSeconds:Ljava/lang/Integer;
            invokevirtual java.lang.Integer.intValue:()I
            aload 1 /* ds */
            invokevirtual org.apache.commons.dbcp2.DelegatingStatement.getQueryTimeout:()I
            if_icmpeq 2
         1: .line 267
            aload 1 /* ds */
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.defaultQueryTimeoutSeconds:Ljava/lang/Integer;
            invokevirtual java.lang.Integer.intValue:()I
            invokevirtual org.apache.commons.dbcp2.DelegatingStatement.setQueryTimeout:(I)V
         2: .line 269
      StackMap locals:
      StackMap stack:
            return
        end local 1 // org.apache.commons.dbcp2.DelegatingStatement ds
        end local 0 // org.apache.commons.dbcp2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/commons/dbcp2/DelegatingConnection<TC;>;
            0    3     1    ds  Lorg/apache/commons/dbcp2/DelegatingStatement;
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
      Name  Flags
      ds    final

  public java.sql.Statement createStatement();
    descriptor: ()Ljava/sql/Statement;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // org.apache.commons.dbcp2.DelegatingConnection this
         0: .line 273
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.checkOpen:()V
         1: .line 275
            new org.apache.commons.dbcp2.DelegatingStatement
            dup
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.connection:Ljava/sql/Connection;
            invokeinterface java.sql.Connection.createStatement:()Ljava/sql/Statement;
            invokespecial org.apache.commons.dbcp2.DelegatingStatement.<init>:(Lorg/apache/commons/dbcp2/DelegatingConnection;Ljava/sql/Statement;)V
            astore 1 /* ds */
        start local 1 // org.apache.commons.dbcp2.DelegatingStatement ds
         2: .line 276
            aload 0 /* this */
            aload 1 /* ds */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.initializeStatement:(Lorg/apache/commons/dbcp2/DelegatingStatement;)V
         3: .line 277
            aload 1 /* ds */
         4: areturn
        end local 1 // org.apache.commons.dbcp2.DelegatingStatement ds
         5: .line 278
      StackMap locals:
      StackMap stack: java.sql.SQLException
            astore 1 /* e */
        start local 1 // java.sql.SQLException e
         6: .line 279
            aload 0 /* this */
            aload 1 /* e */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
         7: .line 280
            aconst_null
            areturn
        end local 1 // java.sql.SQLException e
        end local 0 // org.apache.commons.dbcp2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lorg/apache/commons/dbcp2/DelegatingConnection<TC;>;
            2    5     1    ds  Lorg/apache/commons/dbcp2/DelegatingStatement;
            6    8     1     e  Ljava/sql/SQLException;
      Exception table:
        from    to  target  type
           1     4       5  Class java.sql.SQLException
    Exceptions:
      throws java.sql.SQLException

  public java.sql.Statement createStatement(int, int);
    descriptor: (II)Ljava/sql/Statement;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=4, args_size=3
        start local 0 // org.apache.commons.dbcp2.DelegatingConnection this
        start local 1 // int resultSetType
        start local 2 // int resultSetConcurrency
         0: .line 286
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.checkOpen:()V
         1: .line 288
            new org.apache.commons.dbcp2.DelegatingStatement
            dup
            aload 0 /* this */
         2: .line 289
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.connection:Ljava/sql/Connection;
            iload 1 /* resultSetType */
            iload 2 /* resultSetConcurrency */
            invokeinterface java.sql.Connection.createStatement:(II)Ljava/sql/Statement;
         3: .line 288
            invokespecial org.apache.commons.dbcp2.DelegatingStatement.<init>:(Lorg/apache/commons/dbcp2/DelegatingConnection;Ljava/sql/Statement;)V
            astore 3 /* ds */
        start local 3 // org.apache.commons.dbcp2.DelegatingStatement ds
         4: .line 290
            aload 0 /* this */
            aload 3 /* ds */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.initializeStatement:(Lorg/apache/commons/dbcp2/DelegatingStatement;)V
         5: .line 291
            aload 3 /* ds */
         6: areturn
        end local 3 // org.apache.commons.dbcp2.DelegatingStatement ds
         7: .line 292
      StackMap locals:
      StackMap stack: java.sql.SQLException
            astore 3 /* e */
        start local 3 // java.sql.SQLException e
         8: .line 293
            aload 0 /* this */
            aload 3 /* e */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
         9: .line 294
            aconst_null
            areturn
        end local 3 // java.sql.SQLException e
        end local 2 // int resultSetConcurrency
        end local 1 // int resultSetType
        end local 0 // org.apache.commons.dbcp2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0   10     0                  this  Lorg/apache/commons/dbcp2/DelegatingConnection<TC;>;
            0   10     1         resultSetType  I
            0   10     2  resultSetConcurrency  I
            4    7     3                    ds  Lorg/apache/commons/dbcp2/DelegatingStatement;
            8   10     3                     e  Ljava/sql/SQLException;
      Exception table:
        from    to  target  type
           1     6       7  Class java.sql.SQLException
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
                      Name  Flags
      resultSetType         final
      resultSetConcurrency  final

  public java.sql.PreparedStatement prepareStatement(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/sql/PreparedStatement;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // org.apache.commons.dbcp2.DelegatingConnection this
        start local 1 // java.lang.String sql
         0: .line 300
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.checkOpen:()V
         1: .line 302
            new org.apache.commons.dbcp2.DelegatingPreparedStatement
            dup
            aload 0 /* this */
         2: .line 303
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.connection:Ljava/sql/Connection;
            aload 1 /* sql */
            invokeinterface java.sql.Connection.prepareStatement:(Ljava/lang/String;)Ljava/sql/PreparedStatement;
         3: .line 302
            invokespecial org.apache.commons.dbcp2.DelegatingPreparedStatement.<init>:(Lorg/apache/commons/dbcp2/DelegatingConnection;Ljava/sql/PreparedStatement;)V
            astore 2 /* dps */
        start local 2 // org.apache.commons.dbcp2.DelegatingPreparedStatement dps
         4: .line 304
            aload 0 /* this */
            aload 2 /* dps */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.initializeStatement:(Lorg/apache/commons/dbcp2/DelegatingStatement;)V
         5: .line 305
            aload 2 /* dps */
         6: areturn
        end local 2 // org.apache.commons.dbcp2.DelegatingPreparedStatement dps
         7: .line 306
      StackMap locals:
      StackMap stack: java.sql.SQLException
            astore 2 /* e */
        start local 2 // java.sql.SQLException e
         8: .line 307
            aload 0 /* this */
            aload 2 /* e */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
         9: .line 308
            aconst_null
            areturn
        end local 2 // java.sql.SQLException e
        end local 1 // java.lang.String sql
        end local 0 // org.apache.commons.dbcp2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Lorg/apache/commons/dbcp2/DelegatingConnection<TC;>;
            0   10     1   sql  Ljava/lang/String;
            4    7     2   dps  Lorg/apache/commons/dbcp2/DelegatingPreparedStatement;
            8   10     2     e  Ljava/sql/SQLException;
      Exception table:
        from    to  target  type
           1     6       7  Class java.sql.SQLException
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
      Name  Flags
      sql   final

  public java.sql.PreparedStatement prepareStatement(java.lang.String, int, int);
    descriptor: (Ljava/lang/String;II)Ljava/sql/PreparedStatement;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=5, args_size=4
        start local 0 // org.apache.commons.dbcp2.DelegatingConnection this
        start local 1 // java.lang.String sql
        start local 2 // int resultSetType
        start local 3 // int resultSetConcurrency
         0: .line 315
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.checkOpen:()V
         1: .line 317
            new org.apache.commons.dbcp2.DelegatingPreparedStatement
            dup
            aload 0 /* this */
         2: .line 318
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.connection:Ljava/sql/Connection;
            aload 1 /* sql */
            iload 2 /* resultSetType */
            iload 3 /* resultSetConcurrency */
            invokeinterface java.sql.Connection.prepareStatement:(Ljava/lang/String;II)Ljava/sql/PreparedStatement;
         3: .line 317
            invokespecial org.apache.commons.dbcp2.DelegatingPreparedStatement.<init>:(Lorg/apache/commons/dbcp2/DelegatingConnection;Ljava/sql/PreparedStatement;)V
            astore 4 /* dps */
        start local 4 // org.apache.commons.dbcp2.DelegatingPreparedStatement dps
         4: .line 319
            aload 0 /* this */
            aload 4 /* dps */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.initializeStatement:(Lorg/apache/commons/dbcp2/DelegatingStatement;)V
         5: .line 320
            aload 4 /* dps */
         6: areturn
        end local 4 // org.apache.commons.dbcp2.DelegatingPreparedStatement dps
         7: .line 321
      StackMap locals:
      StackMap stack: java.sql.SQLException
            astore 4 /* e */
        start local 4 // java.sql.SQLException e
         8: .line 322
            aload 0 /* this */
            aload 4 /* e */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
         9: .line 323
            aconst_null
            areturn
        end local 4 // java.sql.SQLException e
        end local 3 // int resultSetConcurrency
        end local 2 // int resultSetType
        end local 1 // java.lang.String sql
        end local 0 // org.apache.commons.dbcp2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0   10     0                  this  Lorg/apache/commons/dbcp2/DelegatingConnection<TC;>;
            0   10     1                   sql  Ljava/lang/String;
            0   10     2         resultSetType  I
            0   10     3  resultSetConcurrency  I
            4    7     4                   dps  Lorg/apache/commons/dbcp2/DelegatingPreparedStatement;
            8   10     4                     e  Ljava/sql/SQLException;
      Exception table:
        from    to  target  type
           1     6       7  Class java.sql.SQLException
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
                      Name  Flags
      sql                   final
      resultSetType         final
      resultSetConcurrency  final

  public java.sql.CallableStatement prepareCall(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/sql/CallableStatement;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // org.apache.commons.dbcp2.DelegatingConnection this
        start local 1 // java.lang.String sql
         0: .line 329
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.checkOpen:()V
         1: .line 331
            new org.apache.commons.dbcp2.DelegatingCallableStatement
            dup
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.connection:Ljava/sql/Connection;
            aload 1 /* sql */
            invokeinterface java.sql.Connection.prepareCall:(Ljava/lang/String;)Ljava/sql/CallableStatement;
            invokespecial org.apache.commons.dbcp2.DelegatingCallableStatement.<init>:(Lorg/apache/commons/dbcp2/DelegatingConnection;Ljava/sql/CallableStatement;)V
            astore 2 /* dcs */
        start local 2 // org.apache.commons.dbcp2.DelegatingCallableStatement dcs
         2: .line 332
            aload 0 /* this */
            aload 2 /* dcs */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.initializeStatement:(Lorg/apache/commons/dbcp2/DelegatingStatement;)V
         3: .line 333
            aload 2 /* dcs */
         4: areturn
        end local 2 // org.apache.commons.dbcp2.DelegatingCallableStatement dcs
         5: .line 334
      StackMap locals:
      StackMap stack: java.sql.SQLException
            astore 2 /* e */
        start local 2 // java.sql.SQLException e
         6: .line 335
            aload 0 /* this */
            aload 2 /* e */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
         7: .line 336
            aconst_null
            areturn
        end local 2 // java.sql.SQLException e
        end local 1 // java.lang.String sql
        end local 0 // org.apache.commons.dbcp2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lorg/apache/commons/dbcp2/DelegatingConnection<TC;>;
            0    8     1   sql  Ljava/lang/String;
            2    5     2   dcs  Lorg/apache/commons/dbcp2/DelegatingCallableStatement;
            6    8     2     e  Ljava/sql/SQLException;
      Exception table:
        from    to  target  type
           1     4       5  Class java.sql.SQLException
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
      Name  Flags
      sql   final

  public java.sql.CallableStatement prepareCall(java.lang.String, int, int);
    descriptor: (Ljava/lang/String;II)Ljava/sql/CallableStatement;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=5, args_size=4
        start local 0 // org.apache.commons.dbcp2.DelegatingConnection this
        start local 1 // java.lang.String sql
        start local 2 // int resultSetType
        start local 3 // int resultSetConcurrency
         0: .line 343
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.checkOpen:()V
         1: .line 345
            new org.apache.commons.dbcp2.DelegatingCallableStatement
            dup
            aload 0 /* this */
         2: .line 346
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.connection:Ljava/sql/Connection;
            aload 1 /* sql */
            iload 2 /* resultSetType */
            iload 3 /* resultSetConcurrency */
            invokeinterface java.sql.Connection.prepareCall:(Ljava/lang/String;II)Ljava/sql/CallableStatement;
         3: .line 345
            invokespecial org.apache.commons.dbcp2.DelegatingCallableStatement.<init>:(Lorg/apache/commons/dbcp2/DelegatingConnection;Ljava/sql/CallableStatement;)V
            astore 4 /* dcs */
        start local 4 // org.apache.commons.dbcp2.DelegatingCallableStatement dcs
         4: .line 347
            aload 0 /* this */
            aload 4 /* dcs */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.initializeStatement:(Lorg/apache/commons/dbcp2/DelegatingStatement;)V
         5: .line 348
            aload 4 /* dcs */
         6: areturn
        end local 4 // org.apache.commons.dbcp2.DelegatingCallableStatement dcs
         7: .line 349
      StackMap locals:
      StackMap stack: java.sql.SQLException
            astore 4 /* e */
        start local 4 // java.sql.SQLException e
         8: .line 350
            aload 0 /* this */
            aload 4 /* e */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
         9: .line 351
            aconst_null
            areturn
        end local 4 // java.sql.SQLException e
        end local 3 // int resultSetConcurrency
        end local 2 // int resultSetType
        end local 1 // java.lang.String sql
        end local 0 // org.apache.commons.dbcp2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0   10     0                  this  Lorg/apache/commons/dbcp2/DelegatingConnection<TC;>;
            0   10     1                   sql  Ljava/lang/String;
            0   10     2         resultSetType  I
            0   10     3  resultSetConcurrency  I
            4    7     4                   dcs  Lorg/apache/commons/dbcp2/DelegatingCallableStatement;
            8   10     4                     e  Ljava/sql/SQLException;
      Exception table:
        from    to  target  type
           1     6       7  Class java.sql.SQLException
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
                      Name  Flags
      sql                   final
      resultSetType         final
      resultSetConcurrency  final

  public void clearWarnings();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.apache.commons.dbcp2.DelegatingConnection this
         0: .line 357
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.checkOpen:()V
         1: .line 359
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.connection:Ljava/sql/Connection;
            invokeinterface java.sql.Connection.clearWarnings:()V
         2: .line 360
            goto 5
      StackMap locals:
      StackMap stack: java.sql.SQLException
         3: astore 1 /* e */
        start local 1 // java.sql.SQLException e
         4: .line 361
            aload 0 /* this */
            aload 1 /* e */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
        end local 1 // java.sql.SQLException e
         5: .line 363
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.apache.commons.dbcp2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/apache/commons/dbcp2/DelegatingConnection<TC;>;
            4    5     1     e  Ljava/sql/SQLException;
      Exception table:
        from    to  target  type
           1     2       3  Class java.sql.SQLException
    Exceptions:
      throws java.sql.SQLException

  public void commit();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.apache.commons.dbcp2.DelegatingConnection this
         0: .line 367
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.checkOpen:()V
         1: .line 369
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.connection:Ljava/sql/Connection;
            invokeinterface java.sql.Connection.commit:()V
         2: .line 370
            goto 5
      StackMap locals:
      StackMap stack: java.sql.SQLException
         3: astore 1 /* e */
        start local 1 // java.sql.SQLException e
         4: .line 371
            aload 0 /* this */
            aload 1 /* e */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
        end local 1 // java.sql.SQLException e
         5: .line 373
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.apache.commons.dbcp2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/apache/commons/dbcp2/DelegatingConnection<TC;>;
            4    5     1     e  Ljava/sql/SQLException;
      Exception table:
        from    to  target  type
           1     2       3  Class java.sql.SQLException
    Exceptions:
      throws java.sql.SQLException

  public boolean getCacheState();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.dbcp2.DelegatingConnection this
         0: .line 381
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.cacheState:Z
            ireturn
        end local 0 // org.apache.commons.dbcp2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/dbcp2/DelegatingConnection<TC;>;

  public boolean getAutoCommit();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.apache.commons.dbcp2.DelegatingConnection this
         0: .line 386
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.checkOpen:()V
         1: .line 387
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.cacheState:Z
            ifeq 3
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.autoCommitCached:Ljava/lang/Boolean;
            ifnull 3
         2: .line 388
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.autoCommitCached:Ljava/lang/Boolean;
            invokevirtual java.lang.Boolean.booleanValue:()Z
            ireturn
         3: .line 391
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.connection:Ljava/sql/Connection;
            invokeinterface java.sql.Connection.getAutoCommit:()Z
            invokestatic java.lang.Boolean.valueOf:(Z)Ljava/lang/Boolean;
            putfield org.apache.commons.dbcp2.DelegatingConnection.autoCommitCached:Ljava/lang/Boolean;
         4: .line 392
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.autoCommitCached:Ljava/lang/Boolean;
            invokevirtual java.lang.Boolean.booleanValue:()Z
         5: ireturn
         6: .line 393
      StackMap locals:
      StackMap stack: java.sql.SQLException
            astore 1 /* e */
        start local 1 // java.sql.SQLException e
         7: .line 394
            aload 0 /* this */
            aload 1 /* e */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
         8: .line 395
            iconst_0
            ireturn
        end local 1 // java.sql.SQLException e
        end local 0 // org.apache.commons.dbcp2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lorg/apache/commons/dbcp2/DelegatingConnection<TC;>;
            7    9     1     e  Ljava/sql/SQLException;
      Exception table:
        from    to  target  type
           3     5       6  Class java.sql.SQLException
    Exceptions:
      throws java.sql.SQLException

  public java.lang.String getCatalog();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.apache.commons.dbcp2.DelegatingConnection this
         0: .line 401
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.checkOpen:()V
         1: .line 403
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.connection:Ljava/sql/Connection;
            invokeinterface java.sql.Connection.getCatalog:()Ljava/lang/String;
         2: areturn
         3: .line 404
      StackMap locals:
      StackMap stack: java.sql.SQLException
            astore 1 /* e */
        start local 1 // java.sql.SQLException e
         4: .line 405
            aload 0 /* this */
            aload 1 /* e */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
         5: .line 406
            aconst_null
            areturn
        end local 1 // java.sql.SQLException e
        end local 0 // org.apache.commons.dbcp2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/apache/commons/dbcp2/DelegatingConnection<TC;>;
            4    6     1     e  Ljava/sql/SQLException;
      Exception table:
        from    to  target  type
           1     2       3  Class java.sql.SQLException
    Exceptions:
      throws java.sql.SQLException

  public java.sql.DatabaseMetaData getMetaData();
    descriptor: ()Ljava/sql/DatabaseMetaData;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // org.apache.commons.dbcp2.DelegatingConnection this
         0: .line 412
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.checkOpen:()V
         1: .line 414
            new org.apache.commons.dbcp2.DelegatingDatabaseMetaData
            dup
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.connection:Ljava/sql/Connection;
            invokeinterface java.sql.Connection.getMetaData:()Ljava/sql/DatabaseMetaData;
            invokespecial org.apache.commons.dbcp2.DelegatingDatabaseMetaData.<init>:(Lorg/apache/commons/dbcp2/DelegatingConnection;Ljava/sql/DatabaseMetaData;)V
         2: areturn
         3: .line 415
      StackMap locals:
      StackMap stack: java.sql.SQLException
            astore 1 /* e */
        start local 1 // java.sql.SQLException e
         4: .line 416
            aload 0 /* this */
            aload 1 /* e */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
         5: .line 417
            aconst_null
            areturn
        end local 1 // java.sql.SQLException e
        end local 0 // org.apache.commons.dbcp2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/apache/commons/dbcp2/DelegatingConnection<TC;>;
            4    6     1     e  Ljava/sql/SQLException;
      Exception table:
        from    to  target  type
           1     2       3  Class java.sql.SQLException
    Exceptions:
      throws java.sql.SQLException

  public int getTransactionIsolation();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.apache.commons.dbcp2.DelegatingConnection this
         0: .line 423
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.checkOpen:()V
         1: .line 425
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.connection:Ljava/sql/Connection;
            invokeinterface java.sql.Connection.getTransactionIsolation:()I
         2: ireturn
         3: .line 426
      StackMap locals:
      StackMap stack: java.sql.SQLException
            astore 1 /* e */
        start local 1 // java.sql.SQLException e
         4: .line 427
            aload 0 /* this */
            aload 1 /* e */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
         5: .line 428
            iconst_m1
            ireturn
        end local 1 // java.sql.SQLException e
        end local 0 // org.apache.commons.dbcp2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/apache/commons/dbcp2/DelegatingConnection<TC;>;
            4    6     1     e  Ljava/sql/SQLException;
      Exception table:
        from    to  target  type
           1     2       3  Class java.sql.SQLException
    Exceptions:
      throws java.sql.SQLException

  public java.util.Map<java.lang.String, java.lang.Class<?>> getTypeMap();
    descriptor: ()Ljava/util/Map;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.apache.commons.dbcp2.DelegatingConnection this
         0: .line 434
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.checkOpen:()V
         1: .line 436
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.connection:Ljava/sql/Connection;
            invokeinterface java.sql.Connection.getTypeMap:()Ljava/util/Map;
         2: areturn
         3: .line 437
      StackMap locals:
      StackMap stack: java.sql.SQLException
            astore 1 /* e */
        start local 1 // java.sql.SQLException e
         4: .line 438
            aload 0 /* this */
            aload 1 /* e */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
         5: .line 439
            aconst_null
            areturn
        end local 1 // java.sql.SQLException e
        end local 0 // org.apache.commons.dbcp2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/apache/commons/dbcp2/DelegatingConnection<TC;>;
            4    6     1     e  Ljava/sql/SQLException;
      Exception table:
        from    to  target  type
           1     2       3  Class java.sql.SQLException
    Exceptions:
      throws java.sql.SQLException
    Signature: ()Ljava/util/Map<Ljava/lang/String;Ljava/lang/Class<*>;>;

  public java.sql.SQLWarning getWarnings();
    descriptor: ()Ljava/sql/SQLWarning;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.apache.commons.dbcp2.DelegatingConnection this
         0: .line 445
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.checkOpen:()V
         1: .line 447
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.connection:Ljava/sql/Connection;
            invokeinterface java.sql.Connection.getWarnings:()Ljava/sql/SQLWarning;
         2: areturn
         3: .line 448
      StackMap locals:
      StackMap stack: java.sql.SQLException
            astore 1 /* e */
        start local 1 // java.sql.SQLException e
         4: .line 449
            aload 0 /* this */
            aload 1 /* e */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
         5: .line 450
            aconst_null
            areturn
        end local 1 // java.sql.SQLException e
        end local 0 // org.apache.commons.dbcp2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/apache/commons/dbcp2/DelegatingConnection<TC;>;
            4    6     1     e  Ljava/sql/SQLException;
      Exception table:
        from    to  target  type
           1     2       3  Class java.sql.SQLException
    Exceptions:
      throws java.sql.SQLException

  public boolean isReadOnly();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.apache.commons.dbcp2.DelegatingConnection this
         0: .line 456
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.checkOpen:()V
         1: .line 457
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.cacheState:Z
            ifeq 3
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.readOnlyCached:Ljava/lang/Boolean;
            ifnull 3
         2: .line 458
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.readOnlyCached:Ljava/lang/Boolean;
            invokevirtual java.lang.Boolean.booleanValue:()Z
            ireturn
         3: .line 461
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.connection:Ljava/sql/Connection;
            invokeinterface java.sql.Connection.isReadOnly:()Z
            invokestatic java.lang.Boolean.valueOf:(Z)Ljava/lang/Boolean;
            putfield org.apache.commons.dbcp2.DelegatingConnection.readOnlyCached:Ljava/lang/Boolean;
         4: .line 462
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.readOnlyCached:Ljava/lang/Boolean;
            invokevirtual java.lang.Boolean.booleanValue:()Z
         5: ireturn
         6: .line 463
      StackMap locals:
      StackMap stack: java.sql.SQLException
            astore 1 /* e */
        start local 1 // java.sql.SQLException e
         7: .line 464
            aload 0 /* this */
            aload 1 /* e */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
         8: .line 465
            iconst_0
            ireturn
        end local 1 // java.sql.SQLException e
        end local 0 // org.apache.commons.dbcp2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lorg/apache/commons/dbcp2/DelegatingConnection<TC;>;
            7    9     1     e  Ljava/sql/SQLException;
      Exception table:
        from    to  target  type
           3     5       6  Class java.sql.SQLException
    Exceptions:
      throws java.sql.SQLException

  public java.lang.String nativeSQL(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.apache.commons.dbcp2.DelegatingConnection this
        start local 1 // java.lang.String sql
         0: .line 471
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.checkOpen:()V
         1: .line 473
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.connection:Ljava/sql/Connection;
            aload 1 /* sql */
            invokeinterface java.sql.Connection.nativeSQL:(Ljava/lang/String;)Ljava/lang/String;
         2: areturn
         3: .line 474
      StackMap locals:
      StackMap stack: java.sql.SQLException
            astore 2 /* e */
        start local 2 // java.sql.SQLException e
         4: .line 475
            aload 0 /* this */
            aload 2 /* e */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
         5: .line 476
            aconst_null
            areturn
        end local 2 // java.sql.SQLException e
        end local 1 // java.lang.String sql
        end local 0 // org.apache.commons.dbcp2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/apache/commons/dbcp2/DelegatingConnection<TC;>;
            0    6     1   sql  Ljava/lang/String;
            4    6     2     e  Ljava/sql/SQLException;
      Exception table:
        from    to  target  type
           1     2       3  Class java.sql.SQLException
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
      Name  Flags
      sql   final

  public void rollback();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.apache.commons.dbcp2.DelegatingConnection this
         0: .line 482
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.checkOpen:()V
         1: .line 484
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.connection:Ljava/sql/Connection;
            invokeinterface java.sql.Connection.rollback:()V
         2: .line 485
            goto 5
      StackMap locals:
      StackMap stack: java.sql.SQLException
         3: astore 1 /* e */
        start local 1 // java.sql.SQLException e
         4: .line 486
            aload 0 /* this */
            aload 1 /* e */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
        end local 1 // java.sql.SQLException e
         5: .line 488
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.apache.commons.dbcp2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/apache/commons/dbcp2/DelegatingConnection<TC;>;
            4    5     1     e  Ljava/sql/SQLException;
      Exception table:
        from    to  target  type
           1     2       3  Class java.sql.SQLException
    Exceptions:
      throws java.sql.SQLException

  public java.lang.Integer getDefaultQueryTimeout();
    descriptor: ()Ljava/lang/Integer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.dbcp2.DelegatingConnection this
         0: .line 497
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.defaultQueryTimeoutSeconds:Ljava/lang/Integer;
            areturn
        end local 0 // org.apache.commons.dbcp2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/dbcp2/DelegatingConnection<TC;>;

  public void setDefaultQueryTimeout(java.lang.Integer);
    descriptor: (Ljava/lang/Integer;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.dbcp2.DelegatingConnection this
        start local 1 // java.lang.Integer defaultQueryTimeoutSeconds
         0: .line 508
            aload 0 /* this */
            aload 1 /* defaultQueryTimeoutSeconds */
            putfield org.apache.commons.dbcp2.DelegatingConnection.defaultQueryTimeoutSeconds:Ljava/lang/Integer;
         1: .line 509
            return
        end local 1 // java.lang.Integer defaultQueryTimeoutSeconds
        end local 0 // org.apache.commons.dbcp2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot                        Name  Signature
            0    2     0                        this  Lorg/apache/commons/dbcp2/DelegatingConnection<TC;>;
            0    2     1  defaultQueryTimeoutSeconds  Ljava/lang/Integer;
    MethodParameters:
                            Name  Flags
      defaultQueryTimeoutSeconds  final

  public void setCacheState(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.dbcp2.DelegatingConnection this
        start local 1 // boolean cacheState
         0: .line 518
            aload 0 /* this */
            iload 1 /* cacheState */
            putfield org.apache.commons.dbcp2.DelegatingConnection.cacheState:Z
         1: .line 519
            return
        end local 1 // boolean cacheState
        end local 0 // org.apache.commons.dbcp2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lorg/apache/commons/dbcp2/DelegatingConnection<TC;>;
            0    2     1  cacheState  Z
    MethodParameters:
            Name  Flags
      cacheState  final

  public void clearCachedState();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.commons.dbcp2.DelegatingConnection this
         0: .line 526
            aload 0 /* this */
            aconst_null
            putfield org.apache.commons.dbcp2.DelegatingConnection.autoCommitCached:Ljava/lang/Boolean;
         1: .line 527
            aload 0 /* this */
            aconst_null
            putfield org.apache.commons.dbcp2.DelegatingConnection.readOnlyCached:Ljava/lang/Boolean;
         2: .line 528
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.connection:Ljava/sql/Connection;
            instanceof org.apache.commons.dbcp2.DelegatingConnection
            ifeq 4
         3: .line 529
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.connection:Ljava/sql/Connection;
            checkcast org.apache.commons.dbcp2.DelegatingConnection
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.clearCachedState:()V
         4: .line 531
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.apache.commons.dbcp2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/apache/commons/dbcp2/DelegatingConnection<TC;>;

  public void setAutoCommit(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.apache.commons.dbcp2.DelegatingConnection this
        start local 1 // boolean autoCommit
         0: .line 535
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.checkOpen:()V
         1: .line 537
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.connection:Ljava/sql/Connection;
            iload 1 /* autoCommit */
            invokeinterface java.sql.Connection.setAutoCommit:(Z)V
         2: .line 538
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.cacheState:Z
            ifeq 8
         3: .line 539
            aload 0 /* this */
            iload 1 /* autoCommit */
            invokestatic java.lang.Boolean.valueOf:(Z)Ljava/lang/Boolean;
            putfield org.apache.commons.dbcp2.DelegatingConnection.autoCommitCached:Ljava/lang/Boolean;
         4: .line 541
            goto 8
      StackMap locals:
      StackMap stack: java.sql.SQLException
         5: astore 2 /* e */
        start local 2 // java.sql.SQLException e
         6: .line 542
            aload 0 /* this */
            aconst_null
            putfield org.apache.commons.dbcp2.DelegatingConnection.autoCommitCached:Ljava/lang/Boolean;
         7: .line 543
            aload 0 /* this */
            aload 2 /* e */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
        end local 2 // java.sql.SQLException e
         8: .line 545
      StackMap locals:
      StackMap stack:
            return
        end local 1 // boolean autoCommit
        end local 0 // org.apache.commons.dbcp2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    9     0        this  Lorg/apache/commons/dbcp2/DelegatingConnection<TC;>;
            0    9     1  autoCommit  Z
            6    8     2           e  Ljava/sql/SQLException;
      Exception table:
        from    to  target  type
           1     4       5  Class java.sql.SQLException
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
            Name  Flags
      autoCommit  final

  public void setCatalog(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.apache.commons.dbcp2.DelegatingConnection this
        start local 1 // java.lang.String catalog
         0: .line 549
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.checkOpen:()V
         1: .line 551
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.connection:Ljava/sql/Connection;
            aload 1 /* catalog */
            invokeinterface java.sql.Connection.setCatalog:(Ljava/lang/String;)V
         2: .line 552
            goto 5
      StackMap locals:
      StackMap stack: java.sql.SQLException
         3: astore 2 /* e */
        start local 2 // java.sql.SQLException e
         4: .line 553
            aload 0 /* this */
            aload 2 /* e */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
        end local 2 // java.sql.SQLException e
         5: .line 555
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.lang.String catalog
        end local 0 // org.apache.commons.dbcp2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    6     0     this  Lorg/apache/commons/dbcp2/DelegatingConnection<TC;>;
            0    6     1  catalog  Ljava/lang/String;
            4    5     2        e  Ljava/sql/SQLException;
      Exception table:
        from    to  target  type
           1     2       3  Class java.sql.SQLException
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
         Name  Flags
      catalog  final

  public void setReadOnly(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.apache.commons.dbcp2.DelegatingConnection this
        start local 1 // boolean readOnly
         0: .line 559
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.checkOpen:()V
         1: .line 561
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.connection:Ljava/sql/Connection;
            iload 1 /* readOnly */
            invokeinterface java.sql.Connection.setReadOnly:(Z)V
         2: .line 562
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.cacheState:Z
            ifeq 8
         3: .line 563
            aload 0 /* this */
            iload 1 /* readOnly */
            invokestatic java.lang.Boolean.valueOf:(Z)Ljava/lang/Boolean;
            putfield org.apache.commons.dbcp2.DelegatingConnection.readOnlyCached:Ljava/lang/Boolean;
         4: .line 565
            goto 8
      StackMap locals:
      StackMap stack: java.sql.SQLException
         5: astore 2 /* e */
        start local 2 // java.sql.SQLException e
         6: .line 566
            aload 0 /* this */
            aconst_null
            putfield org.apache.commons.dbcp2.DelegatingConnection.readOnlyCached:Ljava/lang/Boolean;
         7: .line 567
            aload 0 /* this */
            aload 2 /* e */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
        end local 2 // java.sql.SQLException e
         8: .line 569
      StackMap locals:
      StackMap stack:
            return
        end local 1 // boolean readOnly
        end local 0 // org.apache.commons.dbcp2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    9     0      this  Lorg/apache/commons/dbcp2/DelegatingConnection<TC;>;
            0    9     1  readOnly  Z
            6    8     2         e  Ljava/sql/SQLException;
      Exception table:
        from    to  target  type
           1     4       5  Class java.sql.SQLException
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
          Name  Flags
      readOnly  final

  public void setTransactionIsolation(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.apache.commons.dbcp2.DelegatingConnection this
        start local 1 // int level
         0: .line 573
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.checkOpen:()V
         1: .line 575
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.connection:Ljava/sql/Connection;
            iload 1 /* level */
            invokeinterface java.sql.Connection.setTransactionIsolation:(I)V
         2: .line 576
            goto 5
      StackMap locals:
      StackMap stack: java.sql.SQLException
         3: astore 2 /* e */
        start local 2 // java.sql.SQLException e
         4: .line 577
            aload 0 /* this */
            aload 2 /* e */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
        end local 2 // java.sql.SQLException e
         5: .line 579
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int level
        end local 0 // org.apache.commons.dbcp2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Lorg/apache/commons/dbcp2/DelegatingConnection<TC;>;
            0    6     1  level  I
            4    5     2      e  Ljava/sql/SQLException;
      Exception table:
        from    to  target  type
           1     2       3  Class java.sql.SQLException
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
       Name  Flags
      level  final

  public void setTypeMap(java.util.Map<java.lang.String, java.lang.Class<?>>);
    descriptor: (Ljava/util/Map;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.apache.commons.dbcp2.DelegatingConnection this
        start local 1 // java.util.Map map
         0: .line 583
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.checkOpen:()V
         1: .line 585
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.connection:Ljava/sql/Connection;
            aload 1 /* map */
            invokeinterface java.sql.Connection.setTypeMap:(Ljava/util/Map;)V
         2: .line 586
            goto 5
      StackMap locals:
      StackMap stack: java.sql.SQLException
         3: astore 2 /* e */
        start local 2 // java.sql.SQLException e
         4: .line 587
            aload 0 /* this */
            aload 2 /* e */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
        end local 2 // java.sql.SQLException e
         5: .line 589
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.util.Map map
        end local 0 // org.apache.commons.dbcp2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/apache/commons/dbcp2/DelegatingConnection<TC;>;
            0    6     1   map  Ljava/util/Map<Ljava/lang/String;Ljava/lang/Class<*>;>;
            4    5     2     e  Ljava/sql/SQLException;
      Exception table:
        from    to  target  type
           1     2       3  Class java.sql.SQLException
    Exceptions:
      throws java.sql.SQLException
    Signature: (Ljava/util/Map<Ljava/lang/String;Ljava/lang/Class<*>;>;)V
    MethodParameters:
      Name  Flags
      map   final

  public boolean isClosed();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.dbcp2.DelegatingConnection this
         0: .line 593
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.closed:Z
            ifne 1
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.connection:Ljava/sql/Connection;
            ifnull 1
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.connection:Ljava/sql/Connection;
            invokeinterface java.sql.Connection.isClosed:()Z
            ifne 1
            iconst_0
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_1
            ireturn
        end local 0 // org.apache.commons.dbcp2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/commons/dbcp2/DelegatingConnection<TC;>;
    Exceptions:
      throws java.sql.SQLException

  protected void checkOpen();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=2, args_size=1
        start local 0 // org.apache.commons.dbcp2.DelegatingConnection this
         0: .line 597
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.closed:Z
            ifeq 8
         1: .line 598
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.connection:Ljava/sql/Connection;
            ifnull 7
         2: .line 599
            ldc ""
            astore 1 /* label */
        start local 1 // java.lang.String label
         3: .line 601
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.connection:Ljava/sql/Connection;
            invokevirtual java.lang.Object.toString:()Ljava/lang/String;
            astore 1 /* label */
         4: .line 602
            goto 6
      StackMap locals: org.apache.commons.dbcp2.DelegatingConnection java.lang.String
      StackMap stack: java.lang.Exception
         5: pop
         6: .line 605
      StackMap locals:
      StackMap stack:
            new java.sql.SQLException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Connection "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* label */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc " is closed."
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.sql.SQLException.<init>:(Ljava/lang/String;)V
            athrow
        end local 1 // java.lang.String label
         7: .line 607
      StackMap locals:
      StackMap stack:
            new java.sql.SQLException
            dup
            ldc "Connection is null."
            invokespecial java.sql.SQLException.<init>:(Ljava/lang/String;)V
            athrow
         8: .line 609
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.apache.commons.dbcp2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    9     0   this  Lorg/apache/commons/dbcp2/DelegatingConnection<TC;>;
            3    7     1  label  Ljava/lang/String;
      Exception table:
        from    to  target  type
           3     4       5  Class java.lang.Exception
    Exceptions:
      throws java.sql.SQLException

  protected void activate();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.commons.dbcp2.DelegatingConnection this
         0: .line 612
            aload 0 /* this */
            iconst_0
            putfield org.apache.commons.dbcp2.DelegatingConnection.closed:Z
         1: .line 613
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.setLastUsed:()V
         2: .line 614
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.connection:Ljava/sql/Connection;
            instanceof org.apache.commons.dbcp2.DelegatingConnection
            ifeq 4
         3: .line 615
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.connection:Ljava/sql/Connection;
            checkcast org.apache.commons.dbcp2.DelegatingConnection
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.activate:()V
         4: .line 617
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.apache.commons.dbcp2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/apache/commons/dbcp2/DelegatingConnection<TC;>;

  protected void passivate();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=6, args_size=1
        start local 0 // org.apache.commons.dbcp2.DelegatingConnection this
         0: .line 623
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.getTrace:()Ljava/util/List;
            astore 1 /* traces */
        start local 1 // java.util.List traces
         1: .line 624
            aload 1 /* traces */
            ifnull 21
            aload 1 /* traces */
            invokeinterface java.util.List.isEmpty:()Z
            ifne 21
         2: .line 625
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            astore 2 /* thrown */
        start local 2 // java.util.List thrown
         3: .line 626
            aload 1 /* traces */
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 3 /* traceIter */
        start local 3 // java.util.Iterator traceIter
         4: .line 627
            goto 17
         5: .line 628
      StackMap locals: java.util.List java.util.List java.util.Iterator
      StackMap stack:
            aload 3 /* traceIter */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            astore 4 /* trace */
        start local 4 // java.lang.Object trace
         6: .line 629
            aload 4 /* trace */
            instanceof java.sql.Statement
            ifeq 12
         7: .line 631
            aload 4 /* trace */
            checkcast java.sql.Statement
            invokeinterface java.sql.Statement.close:()V
         8: .line 632
            goto 17
      StackMap locals: org.apache.commons.dbcp2.DelegatingConnection java.util.List java.util.List java.util.Iterator java.lang.Object
      StackMap stack: java.lang.Exception
         9: astore 5 /* e */
        start local 5 // java.lang.Exception e
        10: .line 633
            aload 2 /* thrown */
            aload 5 /* e */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        end local 5 // java.lang.Exception e
        11: .line 635
            goto 17
      StackMap locals:
      StackMap stack:
        12: aload 4 /* trace */
            instanceof java.sql.ResultSet
            ifeq 17
        13: .line 639
            aload 4 /* trace */
            checkcast java.sql.ResultSet
            invokeinterface java.sql.ResultSet.close:()V
        14: .line 640
            goto 17
      StackMap locals:
      StackMap stack: java.lang.Exception
        15: astore 5 /* e */
        start local 5 // java.lang.Exception e
        16: .line 641
            aload 2 /* thrown */
            aload 5 /* e */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        end local 5 // java.lang.Exception e
        end local 4 // java.lang.Object trace
        17: .line 627
      StackMap locals:
      StackMap stack:
            aload 3 /* traceIter */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 5
        18: .line 645
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.clearTrace:()V
        19: .line 646
            aload 2 /* thrown */
            invokeinterface java.util.List.isEmpty:()Z
            ifne 21
        20: .line 647
            new org.apache.commons.dbcp2.SQLExceptionList
            dup
            aload 2 /* thrown */
            invokespecial org.apache.commons.dbcp2.SQLExceptionList.<init>:(Ljava/util/List;)V
            athrow
        end local 3 // java.util.Iterator traceIter
        end local 2 // java.util.List thrown
        21: .line 650
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            lconst_0
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.setLastUsed:(J)V
        22: .line 651
            return
        end local 1 // java.util.List traces
        end local 0 // org.apache.commons.dbcp2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   23     0       this  Lorg/apache/commons/dbcp2/DelegatingConnection<TC;>;
            1   23     1     traces  Ljava/util/List<Lorg/apache/commons/dbcp2/AbandonedTrace;>;
            3   21     2     thrown  Ljava/util/List<Ljava/lang/Exception;>;
            4   21     3  traceIter  Ljava/util/Iterator<Lorg/apache/commons/dbcp2/AbandonedTrace;>;
            6   17     4      trace  Ljava/lang/Object;
           10   11     5          e  Ljava/lang/Exception;
           16   17     5          e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           7     8       9  Class java.lang.Exception
          13    14      15  Class java.lang.Exception
    Exceptions:
      throws java.sql.SQLException

  public int getHoldability();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.apache.commons.dbcp2.DelegatingConnection this
         0: .line 655
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.checkOpen:()V
         1: .line 657
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.connection:Ljava/sql/Connection;
            invokeinterface java.sql.Connection.getHoldability:()I
         2: ireturn
         3: .line 658
      StackMap locals:
      StackMap stack: java.sql.SQLException
            astore 1 /* e */
        start local 1 // java.sql.SQLException e
         4: .line 659
            aload 0 /* this */
            aload 1 /* e */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
         5: .line 660
            iconst_0
            ireturn
        end local 1 // java.sql.SQLException e
        end local 0 // org.apache.commons.dbcp2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/apache/commons/dbcp2/DelegatingConnection<TC;>;
            4    6     1     e  Ljava/sql/SQLException;
      Exception table:
        from    to  target  type
           1     2       3  Class java.sql.SQLException
    Exceptions:
      throws java.sql.SQLException

  public void setHoldability(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.apache.commons.dbcp2.DelegatingConnection this
        start local 1 // int holdability
         0: .line 666
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.checkOpen:()V
         1: .line 668
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.connection:Ljava/sql/Connection;
            iload 1 /* holdability */
            invokeinterface java.sql.Connection.setHoldability:(I)V
         2: .line 669
            goto 5
      StackMap locals:
      StackMap stack: java.sql.SQLException
         3: astore 2 /* e */
        start local 2 // java.sql.SQLException e
         4: .line 670
            aload 0 /* this */
            aload 2 /* e */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
        end local 2 // java.sql.SQLException e
         5: .line 672
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int holdability
        end local 0 // org.apache.commons.dbcp2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    6     0         this  Lorg/apache/commons/dbcp2/DelegatingConnection<TC;>;
            0    6     1  holdability  I
            4    5     2            e  Ljava/sql/SQLException;
      Exception table:
        from    to  target  type
           1     2       3  Class java.sql.SQLException
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
             Name  Flags
      holdability  final

  public java.sql.Savepoint setSavepoint();
    descriptor: ()Ljava/sql/Savepoint;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.apache.commons.dbcp2.DelegatingConnection this
         0: .line 676
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.checkOpen:()V
         1: .line 678
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.connection:Ljava/sql/Connection;
            invokeinterface java.sql.Connection.setSavepoint:()Ljava/sql/Savepoint;
         2: areturn
         3: .line 679
      StackMap locals:
      StackMap stack: java.sql.SQLException
            astore 1 /* e */
        start local 1 // java.sql.SQLException e
         4: .line 680
            aload 0 /* this */
            aload 1 /* e */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
         5: .line 681
            aconst_null
            areturn
        end local 1 // java.sql.SQLException e
        end local 0 // org.apache.commons.dbcp2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/apache/commons/dbcp2/DelegatingConnection<TC;>;
            4    6     1     e  Ljava/sql/SQLException;
      Exception table:
        from    to  target  type
           1     2       3  Class java.sql.SQLException
    Exceptions:
      throws java.sql.SQLException

  public java.sql.Savepoint setSavepoint(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/sql/Savepoint;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.apache.commons.dbcp2.DelegatingConnection this
        start local 1 // java.lang.String name
         0: .line 687
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.checkOpen:()V
         1: .line 689
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.connection:Ljava/sql/Connection;
            aload 1 /* name */
            invokeinterface java.sql.Connection.setSavepoint:(Ljava/lang/String;)Ljava/sql/Savepoint;
         2: areturn
         3: .line 690
      StackMap locals:
      StackMap stack: java.sql.SQLException
            astore 2 /* e */
        start local 2 // java.sql.SQLException e
         4: .line 691
            aload 0 /* this */
            aload 2 /* e */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
         5: .line 692
            aconst_null
            areturn
        end local 2 // java.sql.SQLException e
        end local 1 // java.lang.String name
        end local 0 // org.apache.commons.dbcp2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/apache/commons/dbcp2/DelegatingConnection<TC;>;
            0    6     1  name  Ljava/lang/String;
            4    6     2     e  Ljava/sql/SQLException;
      Exception table:
        from    to  target  type
           1     2       3  Class java.sql.SQLException
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
      Name  Flags
      name  final

  public void rollback(java.sql.Savepoint);
    descriptor: (Ljava/sql/Savepoint;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.apache.commons.dbcp2.DelegatingConnection this
        start local 1 // java.sql.Savepoint savepoint
         0: .line 698
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.checkOpen:()V
         1: .line 700
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.connection:Ljava/sql/Connection;
            aload 1 /* savepoint */
            invokeinterface java.sql.Connection.rollback:(Ljava/sql/Savepoint;)V
         2: .line 701
            goto 5
      StackMap locals:
      StackMap stack: java.sql.SQLException
         3: astore 2 /* e */
        start local 2 // java.sql.SQLException e
         4: .line 702
            aload 0 /* this */
            aload 2 /* e */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
        end local 2 // java.sql.SQLException e
         5: .line 704
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.sql.Savepoint savepoint
        end local 0 // org.apache.commons.dbcp2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    6     0       this  Lorg/apache/commons/dbcp2/DelegatingConnection<TC;>;
            0    6     1  savepoint  Ljava/sql/Savepoint;
            4    5     2          e  Ljava/sql/SQLException;
      Exception table:
        from    to  target  type
           1     2       3  Class java.sql.SQLException
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
           Name  Flags
      savepoint  final

  public void releaseSavepoint(java.sql.Savepoint);
    descriptor: (Ljava/sql/Savepoint;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.apache.commons.dbcp2.DelegatingConnection this
        start local 1 // java.sql.Savepoint savepoint
         0: .line 708
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.checkOpen:()V
         1: .line 710
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.connection:Ljava/sql/Connection;
            aload 1 /* savepoint */
            invokeinterface java.sql.Connection.releaseSavepoint:(Ljava/sql/Savepoint;)V
         2: .line 711
            goto 5
      StackMap locals:
      StackMap stack: java.sql.SQLException
         3: astore 2 /* e */
        start local 2 // java.sql.SQLException e
         4: .line 712
            aload 0 /* this */
            aload 2 /* e */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
        end local 2 // java.sql.SQLException e
         5: .line 714
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.sql.Savepoint savepoint
        end local 0 // org.apache.commons.dbcp2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    6     0       this  Lorg/apache/commons/dbcp2/DelegatingConnection<TC;>;
            0    6     1  savepoint  Ljava/sql/Savepoint;
            4    5     2          e  Ljava/sql/SQLException;
      Exception table:
        from    to  target  type
           1     2       3  Class java.sql.SQLException
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
           Name  Flags
      savepoint  final

  public java.sql.Statement createStatement(int, int, int);
    descriptor: (III)Ljava/sql/Statement;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=5, args_size=4
        start local 0 // org.apache.commons.dbcp2.DelegatingConnection this
        start local 1 // int resultSetType
        start local 2 // int resultSetConcurrency
        start local 3 // int resultSetHoldability
         0: .line 719
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.checkOpen:()V
         1: .line 721
            new org.apache.commons.dbcp2.DelegatingStatement
            dup
            aload 0 /* this */
         2: .line 722
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.connection:Ljava/sql/Connection;
            iload 1 /* resultSetType */
            iload 2 /* resultSetConcurrency */
            iload 3 /* resultSetHoldability */
            invokeinterface java.sql.Connection.createStatement:(III)Ljava/sql/Statement;
         3: .line 721
            invokespecial org.apache.commons.dbcp2.DelegatingStatement.<init>:(Lorg/apache/commons/dbcp2/DelegatingConnection;Ljava/sql/Statement;)V
            astore 4 /* ds */
        start local 4 // org.apache.commons.dbcp2.DelegatingStatement ds
         4: .line 723
            aload 0 /* this */
            aload 4 /* ds */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.initializeStatement:(Lorg/apache/commons/dbcp2/DelegatingStatement;)V
         5: .line 724
            aload 4 /* ds */
         6: areturn
        end local 4 // org.apache.commons.dbcp2.DelegatingStatement ds
         7: .line 725
      StackMap locals:
      StackMap stack: java.sql.SQLException
            astore 4 /* e */
        start local 4 // java.sql.SQLException e
         8: .line 726
            aload 0 /* this */
            aload 4 /* e */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
         9: .line 727
            aconst_null
            areturn
        end local 4 // java.sql.SQLException e
        end local 3 // int resultSetHoldability
        end local 2 // int resultSetConcurrency
        end local 1 // int resultSetType
        end local 0 // org.apache.commons.dbcp2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0   10     0                  this  Lorg/apache/commons/dbcp2/DelegatingConnection<TC;>;
            0   10     1         resultSetType  I
            0   10     2  resultSetConcurrency  I
            0   10     3  resultSetHoldability  I
            4    7     4                    ds  Lorg/apache/commons/dbcp2/DelegatingStatement;
            8   10     4                     e  Ljava/sql/SQLException;
      Exception table:
        from    to  target  type
           1     6       7  Class java.sql.SQLException
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
                      Name  Flags
      resultSetType         final
      resultSetConcurrency  final
      resultSetHoldability  final

  public java.sql.PreparedStatement prepareStatement(java.lang.String, int, int, int);
    descriptor: (Ljava/lang/String;III)Ljava/sql/PreparedStatement;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=8, locals=6, args_size=5
        start local 0 // org.apache.commons.dbcp2.DelegatingConnection this
        start local 1 // java.lang.String sql
        start local 2 // int resultSetType
        start local 3 // int resultSetConcurrency
        start local 4 // int resultSetHoldability
         0: .line 734
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.checkOpen:()V
         1: .line 736
            new org.apache.commons.dbcp2.DelegatingPreparedStatement
            dup
            aload 0 /* this */
         2: .line 737
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.connection:Ljava/sql/Connection;
            aload 1 /* sql */
            iload 2 /* resultSetType */
            iload 3 /* resultSetConcurrency */
            iload 4 /* resultSetHoldability */
            invokeinterface java.sql.Connection.prepareStatement:(Ljava/lang/String;III)Ljava/sql/PreparedStatement;
         3: .line 736
            invokespecial org.apache.commons.dbcp2.DelegatingPreparedStatement.<init>:(Lorg/apache/commons/dbcp2/DelegatingConnection;Ljava/sql/PreparedStatement;)V
            astore 5 /* dps */
        start local 5 // org.apache.commons.dbcp2.DelegatingPreparedStatement dps
         4: .line 738
            aload 0 /* this */
            aload 5 /* dps */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.initializeStatement:(Lorg/apache/commons/dbcp2/DelegatingStatement;)V
         5: .line 739
            aload 5 /* dps */
         6: areturn
        end local 5 // org.apache.commons.dbcp2.DelegatingPreparedStatement dps
         7: .line 740
      StackMap locals:
      StackMap stack: java.sql.SQLException
            astore 5 /* e */
        start local 5 // java.sql.SQLException e
         8: .line 741
            aload 0 /* this */
            aload 5 /* e */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
         9: .line 742
            aconst_null
            areturn
        end local 5 // java.sql.SQLException e
        end local 4 // int resultSetHoldability
        end local 3 // int resultSetConcurrency
        end local 2 // int resultSetType
        end local 1 // java.lang.String sql
        end local 0 // org.apache.commons.dbcp2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0   10     0                  this  Lorg/apache/commons/dbcp2/DelegatingConnection<TC;>;
            0   10     1                   sql  Ljava/lang/String;
            0   10     2         resultSetType  I
            0   10     3  resultSetConcurrency  I
            0   10     4  resultSetHoldability  I
            4    7     5                   dps  Lorg/apache/commons/dbcp2/DelegatingPreparedStatement;
            8   10     5                     e  Ljava/sql/SQLException;
      Exception table:
        from    to  target  type
           1     6       7  Class java.sql.SQLException
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
                      Name  Flags
      sql                   final
      resultSetType         final
      resultSetConcurrency  final
      resultSetHoldability  final

  public java.sql.CallableStatement prepareCall(java.lang.String, int, int, int);
    descriptor: (Ljava/lang/String;III)Ljava/sql/CallableStatement;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=8, locals=6, args_size=5
        start local 0 // org.apache.commons.dbcp2.DelegatingConnection this
        start local 1 // java.lang.String sql
        start local 2 // int resultSetType
        start local 3 // int resultSetConcurrency
        start local 4 // int resultSetHoldability
         0: .line 749
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.checkOpen:()V
         1: .line 751
            new org.apache.commons.dbcp2.DelegatingCallableStatement
            dup
            aload 0 /* this */
         2: .line 752
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.connection:Ljava/sql/Connection;
            aload 1 /* sql */
            iload 2 /* resultSetType */
            iload 3 /* resultSetConcurrency */
            iload 4 /* resultSetHoldability */
            invokeinterface java.sql.Connection.prepareCall:(Ljava/lang/String;III)Ljava/sql/CallableStatement;
         3: .line 751
            invokespecial org.apache.commons.dbcp2.DelegatingCallableStatement.<init>:(Lorg/apache/commons/dbcp2/DelegatingConnection;Ljava/sql/CallableStatement;)V
            astore 5 /* dcs */
        start local 5 // org.apache.commons.dbcp2.DelegatingCallableStatement dcs
         4: .line 753
            aload 0 /* this */
            aload 5 /* dcs */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.initializeStatement:(Lorg/apache/commons/dbcp2/DelegatingStatement;)V
         5: .line 754
            aload 5 /* dcs */
         6: areturn
        end local 5 // org.apache.commons.dbcp2.DelegatingCallableStatement dcs
         7: .line 755
      StackMap locals:
      StackMap stack: java.sql.SQLException
            astore 5 /* e */
        start local 5 // java.sql.SQLException e
         8: .line 756
            aload 0 /* this */
            aload 5 /* e */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
         9: .line 757
            aconst_null
            areturn
        end local 5 // java.sql.SQLException e
        end local 4 // int resultSetHoldability
        end local 3 // int resultSetConcurrency
        end local 2 // int resultSetType
        end local 1 // java.lang.String sql
        end local 0 // org.apache.commons.dbcp2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0   10     0                  this  Lorg/apache/commons/dbcp2/DelegatingConnection<TC;>;
            0   10     1                   sql  Ljava/lang/String;
            0   10     2         resultSetType  I
            0   10     3  resultSetConcurrency  I
            0   10     4  resultSetHoldability  I
            4    7     5                   dcs  Lorg/apache/commons/dbcp2/DelegatingCallableStatement;
            8   10     5                     e  Ljava/sql/SQLException;
      Exception table:
        from    to  target  type
           1     6       7  Class java.sql.SQLException
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
                      Name  Flags
      sql                   final
      resultSetType         final
      resultSetConcurrency  final
      resultSetHoldability  final

  public java.sql.PreparedStatement prepareStatement(java.lang.String, int);
    descriptor: (Ljava/lang/String;I)Ljava/sql/PreparedStatement;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=4, args_size=3
        start local 0 // org.apache.commons.dbcp2.DelegatingConnection this
        start local 1 // java.lang.String sql
        start local 2 // int autoGeneratedKeys
         0: .line 763
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.checkOpen:()V
         1: .line 765
            new org.apache.commons.dbcp2.DelegatingPreparedStatement
            dup
            aload 0 /* this */
         2: .line 766
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.connection:Ljava/sql/Connection;
            aload 1 /* sql */
            iload 2 /* autoGeneratedKeys */
            invokeinterface java.sql.Connection.prepareStatement:(Ljava/lang/String;I)Ljava/sql/PreparedStatement;
         3: .line 765
            invokespecial org.apache.commons.dbcp2.DelegatingPreparedStatement.<init>:(Lorg/apache/commons/dbcp2/DelegatingConnection;Ljava/sql/PreparedStatement;)V
            astore 3 /* dps */
        start local 3 // org.apache.commons.dbcp2.DelegatingPreparedStatement dps
         4: .line 767
            aload 0 /* this */
            aload 3 /* dps */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.initializeStatement:(Lorg/apache/commons/dbcp2/DelegatingStatement;)V
         5: .line 768
            aload 3 /* dps */
         6: areturn
        end local 3 // org.apache.commons.dbcp2.DelegatingPreparedStatement dps
         7: .line 769
      StackMap locals:
      StackMap stack: java.sql.SQLException
            astore 3 /* e */
        start local 3 // java.sql.SQLException e
         8: .line 770
            aload 0 /* this */
            aload 3 /* e */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
         9: .line 771
            aconst_null
            areturn
        end local 3 // java.sql.SQLException e
        end local 2 // int autoGeneratedKeys
        end local 1 // java.lang.String sql
        end local 0 // org.apache.commons.dbcp2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0   10     0               this  Lorg/apache/commons/dbcp2/DelegatingConnection<TC;>;
            0   10     1                sql  Ljava/lang/String;
            0   10     2  autoGeneratedKeys  I
            4    7     3                dps  Lorg/apache/commons/dbcp2/DelegatingPreparedStatement;
            8   10     3                  e  Ljava/sql/SQLException;
      Exception table:
        from    to  target  type
           1     6       7  Class java.sql.SQLException
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
                   Name  Flags
      sql                final
      autoGeneratedKeys  final

  public java.sql.PreparedStatement prepareStatement(java.lang.String, int[]);
    descriptor: (Ljava/lang/String;[I)Ljava/sql/PreparedStatement;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=4, args_size=3
        start local 0 // org.apache.commons.dbcp2.DelegatingConnection this
        start local 1 // java.lang.String sql
        start local 2 // int[] columnIndexes
         0: .line 777
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.checkOpen:()V
         1: .line 779
            new org.apache.commons.dbcp2.DelegatingPreparedStatement
            dup
            aload 0 /* this */
         2: .line 780
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.connection:Ljava/sql/Connection;
            aload 1 /* sql */
            aload 2 /* columnIndexes */
            invokeinterface java.sql.Connection.prepareStatement:(Ljava/lang/String;[I)Ljava/sql/PreparedStatement;
         3: .line 779
            invokespecial org.apache.commons.dbcp2.DelegatingPreparedStatement.<init>:(Lorg/apache/commons/dbcp2/DelegatingConnection;Ljava/sql/PreparedStatement;)V
            astore 3 /* dps */
        start local 3 // org.apache.commons.dbcp2.DelegatingPreparedStatement dps
         4: .line 781
            aload 0 /* this */
            aload 3 /* dps */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.initializeStatement:(Lorg/apache/commons/dbcp2/DelegatingStatement;)V
         5: .line 782
            aload 3 /* dps */
         6: areturn
        end local 3 // org.apache.commons.dbcp2.DelegatingPreparedStatement dps
         7: .line 783
      StackMap locals:
      StackMap stack: java.sql.SQLException
            astore 3 /* e */
        start local 3 // java.sql.SQLException e
         8: .line 784
            aload 0 /* this */
            aload 3 /* e */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
         9: .line 785
            aconst_null
            areturn
        end local 3 // java.sql.SQLException e
        end local 2 // int[] columnIndexes
        end local 1 // java.lang.String sql
        end local 0 // org.apache.commons.dbcp2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   10     0           this  Lorg/apache/commons/dbcp2/DelegatingConnection<TC;>;
            0   10     1            sql  Ljava/lang/String;
            0   10     2  columnIndexes  [I
            4    7     3            dps  Lorg/apache/commons/dbcp2/DelegatingPreparedStatement;
            8   10     3              e  Ljava/sql/SQLException;
      Exception table:
        from    to  target  type
           1     6       7  Class java.sql.SQLException
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
               Name  Flags
      sql            final
      columnIndexes  final

  public java.sql.PreparedStatement prepareStatement(java.lang.String, java.lang.String[]);
    descriptor: (Ljava/lang/String;[Ljava/lang/String;)Ljava/sql/PreparedStatement;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=4, args_size=3
        start local 0 // org.apache.commons.dbcp2.DelegatingConnection this
        start local 1 // java.lang.String sql
        start local 2 // java.lang.String[] columnNames
         0: .line 791
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.checkOpen:()V
         1: .line 793
            new org.apache.commons.dbcp2.DelegatingPreparedStatement
            dup
            aload 0 /* this */
         2: .line 794
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.connection:Ljava/sql/Connection;
            aload 1 /* sql */
            aload 2 /* columnNames */
            invokeinterface java.sql.Connection.prepareStatement:(Ljava/lang/String;[Ljava/lang/String;)Ljava/sql/PreparedStatement;
         3: .line 793
            invokespecial org.apache.commons.dbcp2.DelegatingPreparedStatement.<init>:(Lorg/apache/commons/dbcp2/DelegatingConnection;Ljava/sql/PreparedStatement;)V
            astore 3 /* dps */
        start local 3 // org.apache.commons.dbcp2.DelegatingPreparedStatement dps
         4: .line 795
            aload 0 /* this */
            aload 3 /* dps */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.initializeStatement:(Lorg/apache/commons/dbcp2/DelegatingStatement;)V
         5: .line 796
            aload 3 /* dps */
         6: areturn
        end local 3 // org.apache.commons.dbcp2.DelegatingPreparedStatement dps
         7: .line 797
      StackMap locals:
      StackMap stack: java.sql.SQLException
            astore 3 /* e */
        start local 3 // java.sql.SQLException e
         8: .line 798
            aload 0 /* this */
            aload 3 /* e */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
         9: .line 799
            aconst_null
            areturn
        end local 3 // java.sql.SQLException e
        end local 2 // java.lang.String[] columnNames
        end local 1 // java.lang.String sql
        end local 0 // org.apache.commons.dbcp2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   10     0         this  Lorg/apache/commons/dbcp2/DelegatingConnection<TC;>;
            0   10     1          sql  Ljava/lang/String;
            0   10     2  columnNames  [Ljava/lang/String;
            4    7     3          dps  Lorg/apache/commons/dbcp2/DelegatingPreparedStatement;
            8   10     3            e  Ljava/sql/SQLException;
      Exception table:
        from    to  target  type
           1     6       7  Class java.sql.SQLException
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
             Name  Flags
      sql          final
      columnNames  final

  public boolean isWrapperFor(java.lang.Class<?>);
    descriptor: (Ljava/lang/Class;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.dbcp2.DelegatingConnection this
        start local 1 // java.lang.Class iface
         0: .line 805
            aload 1 /* iface */
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.isAssignableFrom:(Ljava/lang/Class;)Z
            ifeq 2
         1: .line 806
            iconst_1
            ireturn
         2: .line 807
      StackMap locals:
      StackMap stack:
            aload 1 /* iface */
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.connection:Ljava/sql/Connection;
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.isAssignableFrom:(Ljava/lang/Class;)Z
            ifeq 4
         3: .line 808
            iconst_1
            ireturn
         4: .line 810
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.connection:Ljava/sql/Connection;
            aload 1 /* iface */
            invokeinterface java.sql.Connection.isWrapperFor:(Ljava/lang/Class;)Z
            ireturn
        end local 1 // java.lang.Class iface
        end local 0 // org.apache.commons.dbcp2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lorg/apache/commons/dbcp2/DelegatingConnection<TC;>;
            0    5     1  iface  Ljava/lang/Class<*>;
    Exceptions:
      throws java.sql.SQLException
    Signature: (Ljava/lang/Class<*>;)Z
    MethodParameters:
       Name  Flags
      iface  final

  public <T> T unwrap(java.lang.Class<T>);
    descriptor: (Ljava/lang/Class;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.dbcp2.DelegatingConnection this
        start local 1 // java.lang.Class iface
         0: .line 816
            aload 1 /* iface */
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.isAssignableFrom:(Ljava/lang/Class;)Z
            ifeq 2
         1: .line 817
            aload 1 /* iface */
            aload 0 /* this */
            invokevirtual java.lang.Class.cast:(Ljava/lang/Object;)Ljava/lang/Object;
            areturn
         2: .line 818
      StackMap locals:
      StackMap stack:
            aload 1 /* iface */
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.connection:Ljava/sql/Connection;
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.isAssignableFrom:(Ljava/lang/Class;)Z
            ifeq 4
         3: .line 819
            aload 1 /* iface */
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.connection:Ljava/sql/Connection;
            invokevirtual java.lang.Class.cast:(Ljava/lang/Object;)Ljava/lang/Object;
            areturn
         4: .line 821
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.connection:Ljava/sql/Connection;
            aload 1 /* iface */
            invokeinterface java.sql.Connection.unwrap:(Ljava/lang/Class;)Ljava/lang/Object;
            areturn
        end local 1 // java.lang.Class iface
        end local 0 // org.apache.commons.dbcp2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lorg/apache/commons/dbcp2/DelegatingConnection<TC;>;
            0    5     1  iface  Ljava/lang/Class<TT;>;
    Exceptions:
      throws java.sql.SQLException
    Signature: <T:Ljava/lang/Object;>(Ljava/lang/Class<TT;>;)TT;
    MethodParameters:
       Name  Flags
      iface  final

  public java.sql.Array createArrayOf(java.lang.String, java.lang.Object[]);
    descriptor: (Ljava/lang/String;[Ljava/lang/Object;)Ljava/sql/Array;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.apache.commons.dbcp2.DelegatingConnection this
        start local 1 // java.lang.String typeName
        start local 2 // java.lang.Object[] elements
         0: .line 827
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.checkOpen:()V
         1: .line 829
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.connection:Ljava/sql/Connection;
            aload 1 /* typeName */
            aload 2 /* elements */
            invokeinterface java.sql.Connection.createArrayOf:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/sql/Array;
         2: areturn
         3: .line 830
      StackMap locals:
      StackMap stack: java.sql.SQLException
            astore 3 /* e */
        start local 3 // java.sql.SQLException e
         4: .line 831
            aload 0 /* this */
            aload 3 /* e */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
         5: .line 832
            aconst_null
            areturn
        end local 3 // java.sql.SQLException e
        end local 2 // java.lang.Object[] elements
        end local 1 // java.lang.String typeName
        end local 0 // org.apache.commons.dbcp2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    6     0      this  Lorg/apache/commons/dbcp2/DelegatingConnection<TC;>;
            0    6     1  typeName  Ljava/lang/String;
            0    6     2  elements  [Ljava/lang/Object;
            4    6     3         e  Ljava/sql/SQLException;
      Exception table:
        from    to  target  type
           1     2       3  Class java.sql.SQLException
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
          Name  Flags
      typeName  final
      elements  final

  public java.sql.Blob createBlob();
    descriptor: ()Ljava/sql/Blob;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.apache.commons.dbcp2.DelegatingConnection this
         0: .line 838
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.checkOpen:()V
         1: .line 840
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.connection:Ljava/sql/Connection;
            invokeinterface java.sql.Connection.createBlob:()Ljava/sql/Blob;
         2: areturn
         3: .line 841
      StackMap locals:
      StackMap stack: java.sql.SQLException
            astore 1 /* e */
        start local 1 // java.sql.SQLException e
         4: .line 842
            aload 0 /* this */
            aload 1 /* e */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
         5: .line 843
            aconst_null
            areturn
        end local 1 // java.sql.SQLException e
        end local 0 // org.apache.commons.dbcp2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/apache/commons/dbcp2/DelegatingConnection<TC;>;
            4    6     1     e  Ljava/sql/SQLException;
      Exception table:
        from    to  target  type
           1     2       3  Class java.sql.SQLException
    Exceptions:
      throws java.sql.SQLException

  public java.sql.Clob createClob();
    descriptor: ()Ljava/sql/Clob;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.apache.commons.dbcp2.DelegatingConnection this
         0: .line 849
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.checkOpen:()V
         1: .line 851
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.connection:Ljava/sql/Connection;
            invokeinterface java.sql.Connection.createClob:()Ljava/sql/Clob;
         2: areturn
         3: .line 852
      StackMap locals:
      StackMap stack: java.sql.SQLException
            astore 1 /* e */
        start local 1 // java.sql.SQLException e
         4: .line 853
            aload 0 /* this */
            aload 1 /* e */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
         5: .line 854
            aconst_null
            areturn
        end local 1 // java.sql.SQLException e
        end local 0 // org.apache.commons.dbcp2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/apache/commons/dbcp2/DelegatingConnection<TC;>;
            4    6     1     e  Ljava/sql/SQLException;
      Exception table:
        from    to  target  type
           1     2       3  Class java.sql.SQLException
    Exceptions:
      throws java.sql.SQLException

  public java.sql.NClob createNClob();
    descriptor: ()Ljava/sql/NClob;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.apache.commons.dbcp2.DelegatingConnection this
         0: .line 860
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.checkOpen:()V
         1: .line 862
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.connection:Ljava/sql/Connection;
            invokeinterface java.sql.Connection.createNClob:()Ljava/sql/NClob;
         2: areturn
         3: .line 863
      StackMap locals:
      StackMap stack: java.sql.SQLException
            astore 1 /* e */
        start local 1 // java.sql.SQLException e
         4: .line 864
            aload 0 /* this */
            aload 1 /* e */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
         5: .line 865
            aconst_null
            areturn
        end local 1 // java.sql.SQLException e
        end local 0 // org.apache.commons.dbcp2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/apache/commons/dbcp2/DelegatingConnection<TC;>;
            4    6     1     e  Ljava/sql/SQLException;
      Exception table:
        from    to  target  type
           1     2       3  Class java.sql.SQLException
    Exceptions:
      throws java.sql.SQLException

  public java.sql.SQLXML createSQLXML();
    descriptor: ()Ljava/sql/SQLXML;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.apache.commons.dbcp2.DelegatingConnection this
         0: .line 871
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.checkOpen:()V
         1: .line 873
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.connection:Ljava/sql/Connection;
            invokeinterface java.sql.Connection.createSQLXML:()Ljava/sql/SQLXML;
         2: areturn
         3: .line 874
      StackMap locals:
      StackMap stack: java.sql.SQLException
            astore 1 /* e */
        start local 1 // java.sql.SQLException e
         4: .line 875
            aload 0 /* this */
            aload 1 /* e */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
         5: .line 876
            aconst_null
            areturn
        end local 1 // java.sql.SQLException e
        end local 0 // org.apache.commons.dbcp2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/apache/commons/dbcp2/DelegatingConnection<TC;>;
            4    6     1     e  Ljava/sql/SQLException;
      Exception table:
        from    to  target  type
           1     2       3  Class java.sql.SQLException
    Exceptions:
      throws java.sql.SQLException

  public java.sql.Struct createStruct(java.lang.String, java.lang.Object[]);
    descriptor: (Ljava/lang/String;[Ljava/lang/Object;)Ljava/sql/Struct;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.apache.commons.dbcp2.DelegatingConnection this
        start local 1 // java.lang.String typeName
        start local 2 // java.lang.Object[] attributes
         0: .line 882
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.checkOpen:()V
         1: .line 884
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.connection:Ljava/sql/Connection;
            aload 1 /* typeName */
            aload 2 /* attributes */
            invokeinterface java.sql.Connection.createStruct:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/sql/Struct;
         2: areturn
         3: .line 885
      StackMap locals:
      StackMap stack: java.sql.SQLException
            astore 3 /* e */
        start local 3 // java.sql.SQLException e
         4: .line 886
            aload 0 /* this */
            aload 3 /* e */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
         5: .line 887
            aconst_null
            areturn
        end local 3 // java.sql.SQLException e
        end local 2 // java.lang.Object[] attributes
        end local 1 // java.lang.String typeName
        end local 0 // org.apache.commons.dbcp2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    6     0        this  Lorg/apache/commons/dbcp2/DelegatingConnection<TC;>;
            0    6     1    typeName  Ljava/lang/String;
            0    6     2  attributes  [Ljava/lang/Object;
            4    6     3           e  Ljava/sql/SQLException;
      Exception table:
        from    to  target  type
           1     2       3  Class java.sql.SQLException
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
            Name  Flags
      typeName    final
      attributes  final

  public boolean isValid(int);
    descriptor: (I)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.apache.commons.dbcp2.DelegatingConnection this
        start local 1 // int timeoutSeconds
         0: .line 893
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.isClosed:()Z
            ifeq 2
         1: .line 894
            iconst_0
            ireturn
         2: .line 897
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.connection:Ljava/sql/Connection;
            iload 1 /* timeoutSeconds */
            invokeinterface java.sql.Connection.isValid:(I)Z
         3: ireturn
         4: .line 898
      StackMap locals:
      StackMap stack: java.sql.SQLException
            astore 2 /* e */
        start local 2 // java.sql.SQLException e
         5: .line 899
            aload 0 /* this */
            aload 2 /* e */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
         6: .line 900
            iconst_0
            ireturn
        end local 2 // java.sql.SQLException e
        end local 1 // int timeoutSeconds
        end local 0 // org.apache.commons.dbcp2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    7     0            this  Lorg/apache/commons/dbcp2/DelegatingConnection<TC;>;
            0    7     1  timeoutSeconds  I
            5    7     2               e  Ljava/sql/SQLException;
      Exception table:
        from    to  target  type
           2     3       4  Class java.sql.SQLException
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
                Name  Flags
      timeoutSeconds  final

  public void setClientInfo(java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // org.apache.commons.dbcp2.DelegatingConnection this
        start local 1 // java.lang.String name
        start local 2 // java.lang.String value
         0: .line 907
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.checkOpen:()V
         1: .line 908
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.connection:Ljava/sql/Connection;
            aload 1 /* name */
            aload 2 /* value */
            invokeinterface java.sql.Connection.setClientInfo:(Ljava/lang/String;Ljava/lang/String;)V
         2: .line 909
            goto 7
      StackMap locals:
      StackMap stack: java.sql.SQLClientInfoException
         3: astore 3 /* e */
        start local 3 // java.sql.SQLClientInfoException e
         4: .line 910
            aload 3 /* e */
            athrow
        end local 3 // java.sql.SQLClientInfoException e
         5: .line 911
      StackMap locals:
      StackMap stack: java.sql.SQLException
            astore 3 /* e */
        start local 3 // java.sql.SQLException e
         6: .line 912
            new java.sql.SQLClientInfoException
            dup
            ldc "Connection is closed."
            getstatic org.apache.commons.dbcp2.DelegatingConnection.EMPTY_FAILED_PROPERTIES:Ljava/util/Map;
            aload 3 /* e */
            invokespecial java.sql.SQLClientInfoException.<init>:(Ljava/lang/String;Ljava/util/Map;Ljava/lang/Throwable;)V
            athrow
        end local 3 // java.sql.SQLException e
         7: .line 914
      StackMap locals:
      StackMap stack:
            return
        end local 2 // java.lang.String value
        end local 1 // java.lang.String name
        end local 0 // org.apache.commons.dbcp2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    8     0   this  Lorg/apache/commons/dbcp2/DelegatingConnection<TC;>;
            0    8     1   name  Ljava/lang/String;
            0    8     2  value  Ljava/lang/String;
            4    5     3      e  Ljava/sql/SQLClientInfoException;
            6    7     3      e  Ljava/sql/SQLException;
      Exception table:
        from    to  target  type
           0     2       3  Class java.sql.SQLClientInfoException
           0     2       5  Class java.sql.SQLException
    Exceptions:
      throws java.sql.SQLClientInfoException
    MethodParameters:
       Name  Flags
      name   final
      value  final

  public void setClientInfo(java.util.Properties);
    descriptor: (Ljava/util/Properties;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // org.apache.commons.dbcp2.DelegatingConnection this
        start local 1 // java.util.Properties properties
         0: .line 919
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.checkOpen:()V
         1: .line 920
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.connection:Ljava/sql/Connection;
            aload 1 /* properties */
            invokeinterface java.sql.Connection.setClientInfo:(Ljava/util/Properties;)V
         2: .line 921
            goto 7
      StackMap locals:
      StackMap stack: java.sql.SQLClientInfoException
         3: astore 2 /* e */
        start local 2 // java.sql.SQLClientInfoException e
         4: .line 922
            aload 2 /* e */
            athrow
        end local 2 // java.sql.SQLClientInfoException e
         5: .line 923
      StackMap locals:
      StackMap stack: java.sql.SQLException
            astore 2 /* e */
        start local 2 // java.sql.SQLException e
         6: .line 924
            new java.sql.SQLClientInfoException
            dup
            ldc "Connection is closed."
            getstatic org.apache.commons.dbcp2.DelegatingConnection.EMPTY_FAILED_PROPERTIES:Ljava/util/Map;
            aload 2 /* e */
            invokespecial java.sql.SQLClientInfoException.<init>:(Ljava/lang/String;Ljava/util/Map;Ljava/lang/Throwable;)V
            athrow
        end local 2 // java.sql.SQLException e
         7: .line 926
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.util.Properties properties
        end local 0 // org.apache.commons.dbcp2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    8     0        this  Lorg/apache/commons/dbcp2/DelegatingConnection<TC;>;
            0    8     1  properties  Ljava/util/Properties;
            4    5     2           e  Ljava/sql/SQLClientInfoException;
            6    7     2           e  Ljava/sql/SQLException;
      Exception table:
        from    to  target  type
           0     2       3  Class java.sql.SQLClientInfoException
           0     2       5  Class java.sql.SQLException
    Exceptions:
      throws java.sql.SQLClientInfoException
    MethodParameters:
            Name  Flags
      properties  final

  public java.util.Properties getClientInfo();
    descriptor: ()Ljava/util/Properties;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.apache.commons.dbcp2.DelegatingConnection this
         0: .line 930
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.checkOpen:()V
         1: .line 932
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.connection:Ljava/sql/Connection;
            invokeinterface java.sql.Connection.getClientInfo:()Ljava/util/Properties;
         2: areturn
         3: .line 933
      StackMap locals:
      StackMap stack: java.sql.SQLException
            astore 1 /* e */
        start local 1 // java.sql.SQLException e
         4: .line 934
            aload 0 /* this */
            aload 1 /* e */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
         5: .line 935
            aconst_null
            areturn
        end local 1 // java.sql.SQLException e
        end local 0 // org.apache.commons.dbcp2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/apache/commons/dbcp2/DelegatingConnection<TC;>;
            4    6     1     e  Ljava/sql/SQLException;
      Exception table:
        from    to  target  type
           1     2       3  Class java.sql.SQLException
    Exceptions:
      throws java.sql.SQLException

  public java.lang.String getClientInfo(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.apache.commons.dbcp2.DelegatingConnection this
        start local 1 // java.lang.String name
         0: .line 941
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.checkOpen:()V
         1: .line 943
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.connection:Ljava/sql/Connection;
            aload 1 /* name */
            invokeinterface java.sql.Connection.getClientInfo:(Ljava/lang/String;)Ljava/lang/String;
         2: areturn
         3: .line 944
      StackMap locals:
      StackMap stack: java.sql.SQLException
            astore 2 /* e */
        start local 2 // java.sql.SQLException e
         4: .line 945
            aload 0 /* this */
            aload 2 /* e */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
         5: .line 946
            aconst_null
            areturn
        end local 2 // java.sql.SQLException e
        end local 1 // java.lang.String name
        end local 0 // org.apache.commons.dbcp2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/apache/commons/dbcp2/DelegatingConnection<TC;>;
            0    6     1  name  Ljava/lang/String;
            4    6     2     e  Ljava/sql/SQLException;
      Exception table:
        from    to  target  type
           1     2       3  Class java.sql.SQLException
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
      Name  Flags
      name  final

  public void setSchema(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.apache.commons.dbcp2.DelegatingConnection this
        start local 1 // java.lang.String schema
         0: .line 952
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.checkOpen:()V
         1: .line 954
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.connection:Ljava/sql/Connection;
            aload 1 /* schema */
            invokestatic org.apache.commons.dbcp2.Jdbc41Bridge.setSchema:(Ljava/sql/Connection;Ljava/lang/String;)V
         2: .line 955
            goto 5
      StackMap locals:
      StackMap stack: java.sql.SQLException
         3: astore 2 /* e */
        start local 2 // java.sql.SQLException e
         4: .line 956
            aload 0 /* this */
            aload 2 /* e */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
        end local 2 // java.sql.SQLException e
         5: .line 958
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.lang.String schema
        end local 0 // org.apache.commons.dbcp2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Lorg/apache/commons/dbcp2/DelegatingConnection<TC;>;
            0    6     1  schema  Ljava/lang/String;
            4    5     2       e  Ljava/sql/SQLException;
      Exception table:
        from    to  target  type
           1     2       3  Class java.sql.SQLException
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
        Name  Flags
      schema  final

  public java.lang.String getSchema();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.apache.commons.dbcp2.DelegatingConnection this
         0: .line 962
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.checkOpen:()V
         1: .line 964
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.connection:Ljava/sql/Connection;
            invokestatic org.apache.commons.dbcp2.Jdbc41Bridge.getSchema:(Ljava/sql/Connection;)Ljava/lang/String;
         2: areturn
         3: .line 965
      StackMap locals:
      StackMap stack: java.sql.SQLException
            astore 1 /* e */
        start local 1 // java.sql.SQLException e
         4: .line 966
            aload 0 /* this */
            aload 1 /* e */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
         5: .line 967
            aconst_null
            areturn
        end local 1 // java.sql.SQLException e
        end local 0 // org.apache.commons.dbcp2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/apache/commons/dbcp2/DelegatingConnection<TC;>;
            4    6     1     e  Ljava/sql/SQLException;
      Exception table:
        from    to  target  type
           1     2       3  Class java.sql.SQLException
    Exceptions:
      throws java.sql.SQLException

  public void abort(java.util.concurrent.Executor);
    descriptor: (Ljava/util/concurrent/Executor;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.apache.commons.dbcp2.DelegatingConnection this
        start local 1 // java.util.concurrent.Executor executor
         0: .line 973
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.checkOpen:()V
         1: .line 975
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.connection:Ljava/sql/Connection;
            aload 1 /* executor */
            invokestatic org.apache.commons.dbcp2.Jdbc41Bridge.abort:(Ljava/sql/Connection;Ljava/util/concurrent/Executor;)V
         2: .line 976
            goto 5
      StackMap locals:
      StackMap stack: java.sql.SQLException
         3: astore 2 /* e */
        start local 2 // java.sql.SQLException e
         4: .line 977
            aload 0 /* this */
            aload 2 /* e */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
        end local 2 // java.sql.SQLException e
         5: .line 979
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.util.concurrent.Executor executor
        end local 0 // org.apache.commons.dbcp2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    6     0      this  Lorg/apache/commons/dbcp2/DelegatingConnection<TC;>;
            0    6     1  executor  Ljava/util/concurrent/Executor;
            4    5     2         e  Ljava/sql/SQLException;
      Exception table:
        from    to  target  type
           1     2       3  Class java.sql.SQLException
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
          Name  Flags
      executor  final

  public void setNetworkTimeout(java.util.concurrent.Executor, int);
    descriptor: (Ljava/util/concurrent/Executor;I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.apache.commons.dbcp2.DelegatingConnection this
        start local 1 // java.util.concurrent.Executor executor
        start local 2 // int milliseconds
         0: .line 983
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.checkOpen:()V
         1: .line 985
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.connection:Ljava/sql/Connection;
            aload 1 /* executor */
            iload 2 /* milliseconds */
            invokestatic org.apache.commons.dbcp2.Jdbc41Bridge.setNetworkTimeout:(Ljava/sql/Connection;Ljava/util/concurrent/Executor;I)V
         2: .line 986
            goto 5
      StackMap locals:
      StackMap stack: java.sql.SQLException
         3: astore 3 /* e */
        start local 3 // java.sql.SQLException e
         4: .line 987
            aload 0 /* this */
            aload 3 /* e */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
        end local 3 // java.sql.SQLException e
         5: .line 989
      StackMap locals:
      StackMap stack:
            return
        end local 2 // int milliseconds
        end local 1 // java.util.concurrent.Executor executor
        end local 0 // org.apache.commons.dbcp2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    6     0          this  Lorg/apache/commons/dbcp2/DelegatingConnection<TC;>;
            0    6     1      executor  Ljava/util/concurrent/Executor;
            0    6     2  milliseconds  I
            4    5     3             e  Ljava/sql/SQLException;
      Exception table:
        from    to  target  type
           1     2       3  Class java.sql.SQLException
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
              Name  Flags
      executor      final
      milliseconds  final

  public int getNetworkTimeout();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.apache.commons.dbcp2.DelegatingConnection this
         0: .line 993
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.checkOpen:()V
         1: .line 995
            aload 0 /* this */
            getfield org.apache.commons.dbcp2.DelegatingConnection.connection:Ljava/sql/Connection;
            invokestatic org.apache.commons.dbcp2.Jdbc41Bridge.getNetworkTimeout:(Ljava/sql/Connection;)I
         2: ireturn
         3: .line 996
      StackMap locals:
      StackMap stack: java.sql.SQLException
            astore 1 /* e */
        start local 1 // java.sql.SQLException e
         4: .line 997
            aload 0 /* this */
            aload 1 /* e */
            invokevirtual org.apache.commons.dbcp2.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
         5: .line 998
            iconst_0
            ireturn
        end local 1 // java.sql.SQLException e
        end local 0 // org.apache.commons.dbcp2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/apache/commons/dbcp2/DelegatingConnection<TC;>;
            4    6     1     e  Ljava/sql/SQLException;
      Exception table:
        from    to  target  type
           1     2       3  Class java.sql.SQLException
    Exceptions:
      throws java.sql.SQLException
}
Signature: <C::Ljava/sql/Connection;>Lorg/apache/commons/dbcp2/AbandonedTrace;Ljava/sql/Connection;
SourceFile: "DelegatingConnection.java"