public class org.apache.commons.dbcp.DelegatingConnection extends org.apache.commons.dbcp.AbandonedTrace implements java.sql.Connection
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.commons.dbcp.DelegatingConnection
  super_class: org.apache.commons.dbcp.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;>;

  protected java.sql.Connection _conn;
    descriptor: Ljava/sql/Connection;
    flags: (0x0004) ACC_PROTECTED

  protected boolean _closed;
    descriptor: Z
    flags: (0x0004) ACC_PROTECTED

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

  public void <init>(java.sql.Connection);
    descriptor: (Ljava/sql/Connection;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.dbcp.DelegatingConnection this
        start local 1 // java.sql.Connection c
         0: .line 85
            aload 0 /* this */
            invokespecial org.apache.commons.dbcp.AbandonedTrace.<init>:()V
         1: .line 74
            aload 0 /* this */
            aconst_null
            putfield org.apache.commons.dbcp.DelegatingConnection._conn:Ljava/sql/Connection;
         2: .line 76
            aload 0 /* this */
            iconst_0
            putfield org.apache.commons.dbcp.DelegatingConnection._closed:Z
         3: .line 86
            aload 0 /* this */
            aload 1 /* c */
            putfield org.apache.commons.dbcp.DelegatingConnection._conn:Ljava/sql/Connection;
         4: .line 87
            return
        end local 1 // java.sql.Connection c
        end local 0 // org.apache.commons.dbcp.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/apache/commons/dbcp/DelegatingConnection;
            0    5     1     c  Ljava/sql/Connection;
    MethodParameters:
      Name  Flags
      c     

  public void <init>(java.sql.Connection, org.apache.commons.dbcp.AbandonedConfig);
    descriptor: (Ljava/sql/Connection;Lorg/apache/commons/dbcp/AbandonedConfig;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.apache.commons.dbcp.DelegatingConnection this
        start local 1 // java.sql.Connection c
        start local 2 // org.apache.commons.dbcp.AbandonedConfig config
         0: .line 98
            aload 0 /* this */
            aload 2 /* config */
            invokespecial org.apache.commons.dbcp.AbandonedTrace.<init>:(Lorg/apache/commons/dbcp/AbandonedConfig;)V
         1: .line 74
            aload 0 /* this */
            aconst_null
            putfield org.apache.commons.dbcp.DelegatingConnection._conn:Ljava/sql/Connection;
         2: .line 76
            aload 0 /* this */
            iconst_0
            putfield org.apache.commons.dbcp.DelegatingConnection._closed:Z
         3: .line 99
            aload 0 /* this */
            aload 1 /* c */
            putfield org.apache.commons.dbcp.DelegatingConnection._conn:Ljava/sql/Connection;
         4: .line 100
            return
        end local 2 // org.apache.commons.dbcp.AbandonedConfig config
        end local 1 // java.sql.Connection c
        end local 0 // org.apache.commons.dbcp.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Lorg/apache/commons/dbcp/DelegatingConnection;
            0    5     1       c  Ljava/sql/Connection;
            0    5     2  config  Lorg/apache/commons/dbcp/AbandonedConfig;
    MethodParameters:
        Name  Flags
      c       
      config  

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=1
        start local 0 // org.apache.commons.dbcp.DelegatingConnection this
         0: .line 109
            aconst_null
            astore 1 /* s */
        start local 1 // java.lang.String s
         1: .line 111
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.getInnermostDelegateInternal:()Ljava/sql/Connection;
            astore 2 /* c */
        start local 2 // java.sql.Connection c
         2: .line 112
            aload 2 /* c */
            ifnull 17
         3: .line 114
            aload 2 /* c */
            invokeinterface java.sql.Connection.isClosed:()Z
            ifeq 6
         4: .line 115
            ldc "connection is closed"
            astore 1 /* s */
         5: .line 116
            goto 17
         6: .line 118
      StackMap locals: java.lang.String java.sql.Connection
      StackMap stack:
            aload 2 /* c */
            invokeinterface java.sql.Connection.getMetaData:()Ljava/sql/DatabaseMetaData;
            astore 3 /* meta */
        start local 3 // java.sql.DatabaseMetaData meta
         7: .line 119
            aload 3 /* meta */
            ifnull 17
         8: .line 120
            new java.lang.StringBuffer
            dup
            invokespecial java.lang.StringBuffer.<init>:()V
            astore 4 /* sb */
        start local 4 // java.lang.StringBuffer sb
         9: .line 121
            aload 4 /* sb */
            aload 3 /* meta */
            invokeinterface java.sql.DatabaseMetaData.getURL:()Ljava/lang/String;
            invokevirtual java.lang.StringBuffer.append:(Ljava/lang/String;)Ljava/lang/StringBuffer;
            pop
        10: .line 122
            aload 4 /* sb */
            ldc ", UserName="
            invokevirtual java.lang.StringBuffer.append:(Ljava/lang/String;)Ljava/lang/StringBuffer;
            pop
        11: .line 123
            aload 4 /* sb */
            aload 3 /* meta */
            invokeinterface java.sql.DatabaseMetaData.getUserName:()Ljava/lang/String;
            invokevirtual java.lang.StringBuffer.append:(Ljava/lang/String;)Ljava/lang/StringBuffer;
            pop
        12: .line 124
            aload 4 /* sb */
            ldc ", "
            invokevirtual java.lang.StringBuffer.append:(Ljava/lang/String;)Ljava/lang/StringBuffer;
            pop
        13: .line 125
            aload 4 /* sb */
            aload 3 /* meta */
            invokeinterface java.sql.DatabaseMetaData.getDriverName:()Ljava/lang/String;
            invokevirtual java.lang.StringBuffer.append:(Ljava/lang/String;)Ljava/lang/StringBuffer;
            pop
        14: .line 126
            aload 4 /* sb */
            invokevirtual java.lang.StringBuffer.toString:()Ljava/lang/String;
            astore 1 /* s */
        end local 4 // java.lang.StringBuffer sb
        end local 3 // java.sql.DatabaseMetaData meta
        15: .line 129
            goto 17
        16: .line 130
      StackMap locals:
      StackMap stack: java.sql.SQLException
            pop
        17: .line 135
      StackMap locals:
      StackMap stack:
            aload 1 /* s */
            ifnonnull 19
        18: .line 136
            aload 0 /* this */
            invokespecial java.lang.Object.toString:()Ljava/lang/String;
            astore 1 /* s */
        19: .line 139
      StackMap locals:
      StackMap stack:
            aload 1 /* s */
            areturn
        end local 2 // java.sql.Connection c
        end local 1 // java.lang.String s
        end local 0 // org.apache.commons.dbcp.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   20     0  this  Lorg/apache/commons/dbcp/DelegatingConnection;
            1   20     1     s  Ljava/lang/String;
            2   20     2     c  Ljava/sql/Connection;
            7   15     3  meta  Ljava/sql/DatabaseMetaData;
            9   15     4    sb  Ljava/lang/StringBuffer;
      Exception table:
        from    to  target  type
           3    15      16  Class java.sql.SQLException

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

  protected java.sql.Connection getDelegateInternal();
    descriptor: ()Ljava/sql/Connection;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.dbcp.DelegatingConnection this
         0: .line 154
            aload 0 /* this */
            getfield org.apache.commons.dbcp.DelegatingConnection._conn:Ljava/sql/Connection;
            areturn
        end local 0 // org.apache.commons.dbcp.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/dbcp/DelegatingConnection;

  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.dbcp.DelegatingConnection this
        start local 1 // java.sql.Connection c
         0: .line 165
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.getInnermostDelegateInternal:()Ljava/sql/Connection;
            astore 2 /* innerCon */
        start local 2 // java.sql.Connection innerCon
         1: .line 166
            aload 2 /* innerCon */
            ifnonnull 4
         2: .line 167
            aload 1 /* c */
            ifnonnull 3
            iconst_1
            ireturn
      StackMap locals: java.sql.Connection
      StackMap stack:
         3: iconst_0
            ireturn
         4: .line 169
      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.dbcp.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lorg/apache/commons/dbcp/DelegatingConnection;
            0    5     1         c  Ljava/sql/Connection;
            1    5     2  innerCon  Ljava/sql/Connection;
    MethodParameters:
      Name  Flags
      c     

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // org.apache.commons.dbcp.DelegatingConnection this
        start local 1 // java.lang.Object obj
         0: .line 178
            aload 1 /* obj */
            ifnonnull 2
         1: .line 179
            iconst_0
            ireturn
         2: .line 181
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            aload 0 /* this */
            if_acmpne 4
         3: .line 182
            iconst_1
            ireturn
         4: .line 184
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.getInnermostDelegateInternal:()Ljava/sql/Connection;
            astore 2 /* delegate */
        start local 2 // java.sql.Connection delegate
         5: .line 185
            aload 2 /* delegate */
            ifnonnull 7
         6: .line 186
            iconst_0
            ireturn
         7: .line 188
      StackMap locals: java.sql.Connection
      StackMap stack:
            aload 1 /* obj */
            instanceof org.apache.commons.dbcp.DelegatingConnection
            ifeq 10
         8: .line 189
            aload 1 /* obj */
            checkcast org.apache.commons.dbcp.DelegatingConnection
            astore 3 /* c */
        start local 3 // org.apache.commons.dbcp.DelegatingConnection c
         9: .line 190
            aload 3 /* c */
            aload 2 /* delegate */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.innermostDelegateEquals:(Ljava/sql/Connection;)Z
            ireturn
        end local 3 // org.apache.commons.dbcp.DelegatingConnection c
        10: .line 193
      StackMap locals:
      StackMap stack:
            aload 2 /* delegate */
            aload 1 /* obj */
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ireturn
        end local 2 // java.sql.Connection delegate
        end local 1 // java.lang.Object obj
        end local 0 // org.apache.commons.dbcp.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   11     0      this  Lorg/apache/commons/dbcp/DelegatingConnection;
            0   11     1       obj  Ljava/lang/Object;
            5   11     2  delegate  Ljava/sql/Connection;
            9   10     3         c  Lorg/apache/commons/dbcp/DelegatingConnection;
    MethodParameters:
      Name  Flags
      obj   

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=1
        start local 0 // org.apache.commons.dbcp.DelegatingConnection this
         0: .line 198
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.getInnermostDelegateInternal:()Ljava/sql/Connection;
            astore 1 /* obj */
        start local 1 // java.lang.Object obj
         1: .line 199
            aload 1 /* obj */
            ifnonnull 3
         2: .line 200
            iconst_0
            ireturn
         3: .line 202
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 1 /* obj */
            invokevirtual java.lang.Object.hashCode:()I
            ireturn
        end local 1 // java.lang.Object obj
        end local 0 // org.apache.commons.dbcp.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/apache/commons/dbcp/DelegatingConnection;
            1    4     1   obj  Ljava/lang/Object;

  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.dbcp.DelegatingConnection this
         0: .line 222
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.getInnermostDelegateInternal:()Ljava/sql/Connection;
            areturn
        end local 0 // org.apache.commons.dbcp.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/dbcp/DelegatingConnection;

  protected final java.sql.Connection getInnermostDelegateInternal();
    descriptor: ()Ljava/sql/Connection;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.apache.commons.dbcp.DelegatingConnection this
         0: .line 226
            aload 0 /* this */
            getfield org.apache.commons.dbcp.DelegatingConnection._conn:Ljava/sql/Connection;
            astore 1 /* c */
        start local 1 // java.sql.Connection c
         1: .line 227
            goto 5
         2: .line 228
      StackMap locals: java.sql.Connection
      StackMap stack:
            aload 1 /* c */
            checkcast org.apache.commons.dbcp.DelegatingConnection
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.getDelegateInternal:()Ljava/sql/Connection;
            astore 1 /* c */
         3: .line 229
            aload 0 /* this */
            aload 1 /* c */
            if_acmpne 5
         4: .line 230
            aconst_null
            areturn
         5: .line 227
      StackMap locals:
      StackMap stack:
            aload 1 /* c */
            ifnull 6
            aload 1 /* c */
            instanceof org.apache.commons.dbcp.DelegatingConnection
            ifne 2
         6: .line 233
      StackMap locals:
      StackMap stack:
            aload 1 /* c */
            areturn
        end local 1 // java.sql.Connection c
        end local 0 // org.apache.commons.dbcp.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/apache/commons/dbcp/DelegatingConnection;
            1    7     1     c  Ljava/sql/Connection;

  public void setDelegate(java.sql.Connection);
    descriptor: (Ljava/sql/Connection;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.dbcp.DelegatingConnection this
        start local 1 // java.sql.Connection c
         0: .line 238
            aload 0 /* this */
            aload 1 /* c */
            putfield org.apache.commons.dbcp.DelegatingConnection._conn:Ljava/sql/Connection;
         1: .line 239
            return
        end local 1 // java.sql.Connection c
        end local 0 // org.apache.commons.dbcp.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/commons/dbcp/DelegatingConnection;
            0    2     1     c  Ljava/sql/Connection;
    MethodParameters:
      Name  Flags
      c     

  public void close();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.dbcp.DelegatingConnection this
         0: .line 246
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.passivate:()V
         1: .line 247
            aload 0 /* this */
            getfield org.apache.commons.dbcp.DelegatingConnection._conn:Ljava/sql/Connection;
            invokeinterface java.sql.Connection.close:()V
         2: .line 248
            return
        end local 0 // org.apache.commons.dbcp.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/commons/dbcp/DelegatingConnection;
    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.dbcp.DelegatingConnection this
        start local 1 // java.sql.SQLException e
         0: .line 251
            aload 1 /* e */
            athrow
        end local 1 // java.sql.SQLException e
        end local 0 // org.apache.commons.dbcp.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/dbcp/DelegatingConnection;
            0    1     1     e  Ljava/sql/SQLException;
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
      Name  Flags
      e     

  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.dbcp.DelegatingConnection this
         0: .line 255
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.checkOpen:()V
         1: .line 257
            new org.apache.commons.dbcp.DelegatingStatement
            dup
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.commons.dbcp.DelegatingConnection._conn:Ljava/sql/Connection;
            invokeinterface java.sql.Connection.createStatement:()Ljava/sql/Statement;
            invokespecial org.apache.commons.dbcp.DelegatingStatement.<init>:(Lorg/apache/commons/dbcp/DelegatingConnection;Ljava/sql/Statement;)V
         2: areturn
         3: .line 259
      StackMap locals:
      StackMap stack: java.sql.SQLException
            astore 1 /* e */
        start local 1 // java.sql.SQLException e
         4: .line 260
            aload 0 /* this */
            aload 1 /* e */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
         5: .line 261
            aconst_null
            areturn
        end local 1 // java.sql.SQLException e
        end local 0 // org.apache.commons.dbcp.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/apache/commons/dbcp/DelegatingConnection;
            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.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.dbcp.DelegatingConnection this
        start local 1 // int resultSetType
        start local 2 // int resultSetConcurrency
         0: .line 267
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.checkOpen:()V
         1: .line 269
            new org.apache.commons.dbcp.DelegatingStatement
            dup
         2: .line 270
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.commons.dbcp.DelegatingConnection._conn:Ljava/sql/Connection;
            iload 1 /* resultSetType */
            iload 2 /* resultSetConcurrency */
            invokeinterface java.sql.Connection.createStatement:(II)Ljava/sql/Statement;
         3: .line 269
            invokespecial org.apache.commons.dbcp.DelegatingStatement.<init>:(Lorg/apache/commons/dbcp/DelegatingConnection;Ljava/sql/Statement;)V
         4: areturn
         5: .line 272
      StackMap locals:
      StackMap stack: java.sql.SQLException
            astore 3 /* e */
        start local 3 // java.sql.SQLException e
         6: .line 273
            aload 0 /* this */
            aload 3 /* e */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
         7: .line 274
            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.dbcp.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0    8     0                  this  Lorg/apache/commons/dbcp/DelegatingConnection;
            0    8     1         resultSetType  I
            0    8     2  resultSetConcurrency  I
            6    8     3                     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
      resultSetType         
      resultSetConcurrency  

  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.dbcp.DelegatingConnection this
        start local 1 // java.lang.String sql
         0: .line 279
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.checkOpen:()V
         1: .line 281
            new org.apache.commons.dbcp.DelegatingPreparedStatement
            dup
         2: .line 282
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.commons.dbcp.DelegatingConnection._conn:Ljava/sql/Connection;
            aload 1 /* sql */
            invokeinterface java.sql.Connection.prepareStatement:(Ljava/lang/String;)Ljava/sql/PreparedStatement;
         3: .line 281
            invokespecial org.apache.commons.dbcp.DelegatingPreparedStatement.<init>:(Lorg/apache/commons/dbcp/DelegatingConnection;Ljava/sql/PreparedStatement;)V
         4: areturn
         5: .line 284
      StackMap locals:
      StackMap stack: java.sql.SQLException
            astore 2 /* e */
        start local 2 // java.sql.SQLException e
         6: .line 285
            aload 0 /* this */
            aload 2 /* e */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
         7: .line 286
            aconst_null
            areturn
        end local 2 // java.sql.SQLException e
        end local 1 // java.lang.String sql
        end local 0 // org.apache.commons.dbcp.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lorg/apache/commons/dbcp/DelegatingConnection;
            0    8     1   sql  Ljava/lang/String;
            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   

  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.dbcp.DelegatingConnection this
        start local 1 // java.lang.String sql
        start local 2 // int resultSetType
        start local 3 // int resultSetConcurrency
         0: .line 293
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.checkOpen:()V
         1: .line 295
            new org.apache.commons.dbcp.DelegatingPreparedStatement
            dup
         2: .line 296
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.commons.dbcp.DelegatingConnection._conn:Ljava/sql/Connection;
         3: .line 297
            aload 1 /* sql */
            iload 2 /* resultSetType */
            iload 3 /* resultSetConcurrency */
         4: .line 296
            invokeinterface java.sql.Connection.prepareStatement:(Ljava/lang/String;II)Ljava/sql/PreparedStatement;
         5: .line 295
            invokespecial org.apache.commons.dbcp.DelegatingPreparedStatement.<init>:(Lorg/apache/commons/dbcp/DelegatingConnection;Ljava/sql/PreparedStatement;)V
         6: areturn
         7: .line 299
      StackMap locals:
      StackMap stack: java.sql.SQLException
            astore 4 /* e */
        start local 4 // java.sql.SQLException e
         8: .line 300
            aload 0 /* this */
            aload 4 /* e */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
         9: .line 301
            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.dbcp.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0   10     0                  this  Lorg/apache/commons/dbcp/DelegatingConnection;
            0   10     1                   sql  Ljava/lang/String;
            0   10     2         resultSetType  I
            0   10     3  resultSetConcurrency  I
            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                   
      resultSetType         
      resultSetConcurrency  

  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.dbcp.DelegatingConnection this
        start local 1 // java.lang.String sql
         0: .line 306
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.checkOpen:()V
         1: .line 308
            new org.apache.commons.dbcp.DelegatingCallableStatement
            dup
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.commons.dbcp.DelegatingConnection._conn:Ljava/sql/Connection;
            aload 1 /* sql */
            invokeinterface java.sql.Connection.prepareCall:(Ljava/lang/String;)Ljava/sql/CallableStatement;
            invokespecial org.apache.commons.dbcp.DelegatingCallableStatement.<init>:(Lorg/apache/commons/dbcp/DelegatingConnection;Ljava/sql/CallableStatement;)V
         2: areturn
         3: .line 310
      StackMap locals:
      StackMap stack: java.sql.SQLException
            astore 2 /* e */
        start local 2 // java.sql.SQLException e
         4: .line 311
            aload 0 /* this */
            aload 2 /* e */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
         5: .line 312
            aconst_null
            areturn
        end local 2 // java.sql.SQLException e
        end local 1 // java.lang.String sql
        end local 0 // org.apache.commons.dbcp.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/apache/commons/dbcp/DelegatingConnection;
            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   

  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.dbcp.DelegatingConnection this
        start local 1 // java.lang.String sql
        start local 2 // int resultSetType
        start local 3 // int resultSetConcurrency
         0: .line 319
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.checkOpen:()V
         1: .line 321
            new org.apache.commons.dbcp.DelegatingCallableStatement
            dup
         2: .line 322
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.commons.dbcp.DelegatingConnection._conn: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 321
            invokespecial org.apache.commons.dbcp.DelegatingCallableStatement.<init>:(Lorg/apache/commons/dbcp/DelegatingConnection;Ljava/sql/CallableStatement;)V
         4: areturn
         5: .line 324
      StackMap locals:
      StackMap stack: java.sql.SQLException
            astore 4 /* e */
        start local 4 // java.sql.SQLException e
         6: .line 325
            aload 0 /* this */
            aload 4 /* e */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
         7: .line 326
            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.dbcp.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0    8     0                  this  Lorg/apache/commons/dbcp/DelegatingConnection;
            0    8     1                   sql  Ljava/lang/String;
            0    8     2         resultSetType  I
            0    8     3  resultSetConcurrency  I
            6    8     4                     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                   
      resultSetType         
      resultSetConcurrency  

  public void clearWarnings();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.apache.commons.dbcp.DelegatingConnection this
         0: .line 331
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.checkOpen:()V
         1: aload 0 /* this */
            getfield org.apache.commons.dbcp.DelegatingConnection._conn:Ljava/sql/Connection;
            invokeinterface java.sql.Connection.clearWarnings:()V
         2: goto 5
      StackMap locals:
      StackMap stack: java.sql.SQLException
         3: astore 1 /* e */
        start local 1 // java.sql.SQLException e
         4: aload 0 /* this */
            aload 1 /* e */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
        end local 1 // java.sql.SQLException e
      StackMap locals:
      StackMap stack:
         5: return
        end local 0 // org.apache.commons.dbcp.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/apache/commons/dbcp/DelegatingConnection;
            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.dbcp.DelegatingConnection this
         0: .line 334
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.checkOpen:()V
         1: aload 0 /* this */
            getfield org.apache.commons.dbcp.DelegatingConnection._conn:Ljava/sql/Connection;
            invokeinterface java.sql.Connection.commit:()V
         2: goto 5
      StackMap locals:
      StackMap stack: java.sql.SQLException
         3: astore 1 /* e */
        start local 1 // java.sql.SQLException e
         4: aload 0 /* this */
            aload 1 /* e */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
        end local 1 // java.sql.SQLException e
      StackMap locals:
      StackMap stack:
         5: return
        end local 0 // org.apache.commons.dbcp.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/apache/commons/dbcp/DelegatingConnection;
            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 getAutoCommit();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.apache.commons.dbcp.DelegatingConnection this
         0: .line 337
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.checkOpen:()V
         1: aload 0 /* this */
            getfield org.apache.commons.dbcp.DelegatingConnection._conn:Ljava/sql/Connection;
            invokeinterface java.sql.Connection.getAutoCommit:()Z
         2: ireturn
      StackMap locals:
      StackMap stack: java.sql.SQLException
         3: astore 1 /* e */
        start local 1 // java.sql.SQLException e
         4: aload 0 /* this */
            aload 1 /* e */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
            iconst_0
            ireturn
        end local 1 // java.sql.SQLException e
        end local 0 // org.apache.commons.dbcp.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/apache/commons/dbcp/DelegatingConnection;
            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.String getCatalog();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.apache.commons.dbcp.DelegatingConnection this
         0: .line 340
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.checkOpen:()V
         1: aload 0 /* this */
            getfield org.apache.commons.dbcp.DelegatingConnection._conn:Ljava/sql/Connection;
            invokeinterface java.sql.Connection.getCatalog:()Ljava/lang/String;
         2: areturn
      StackMap locals:
      StackMap stack: java.sql.SQLException
         3: astore 1 /* e */
        start local 1 // java.sql.SQLException e
         4: aload 0 /* this */
            aload 1 /* e */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
            aconst_null
            areturn
        end local 1 // java.sql.SQLException e
        end local 0 // org.apache.commons.dbcp.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/apache/commons/dbcp/DelegatingConnection;
            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.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.dbcp.DelegatingConnection this
         0: .line 343
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.checkOpen:()V
         1: .line 345
            new org.apache.commons.dbcp.DelegatingDatabaseMetaData
            dup
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.commons.dbcp.DelegatingConnection._conn:Ljava/sql/Connection;
            invokeinterface java.sql.Connection.getMetaData:()Ljava/sql/DatabaseMetaData;
            invokespecial org.apache.commons.dbcp.DelegatingDatabaseMetaData.<init>:(Lorg/apache/commons/dbcp/DelegatingConnection;Ljava/sql/DatabaseMetaData;)V
         2: areturn
         3: .line 346
      StackMap locals:
      StackMap stack: java.sql.SQLException
            astore 1 /* e */
        start local 1 // java.sql.SQLException e
         4: .line 347
            aload 0 /* this */
            aload 1 /* e */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
         5: .line 348
            aconst_null
            areturn
        end local 1 // java.sql.SQLException e
        end local 0 // org.apache.commons.dbcp.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/apache/commons/dbcp/DelegatingConnection;
            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.dbcp.DelegatingConnection this
         0: .line 353
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.checkOpen:()V
         1: aload 0 /* this */
            getfield org.apache.commons.dbcp.DelegatingConnection._conn:Ljava/sql/Connection;
            invokeinterface java.sql.Connection.getTransactionIsolation:()I
         2: ireturn
      StackMap locals:
      StackMap stack: java.sql.SQLException
         3: astore 1 /* e */
        start local 1 // java.sql.SQLException e
         4: aload 0 /* this */
            aload 1 /* e */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
            iconst_m1
            ireturn
        end local 1 // java.sql.SQLException e
        end local 0 // org.apache.commons.dbcp.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/apache/commons/dbcp/DelegatingConnection;
            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.util.Map getTypeMap();
    descriptor: ()Ljava/util/Map;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.apache.commons.dbcp.DelegatingConnection this
         0: .line 356
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.checkOpen:()V
         1: aload 0 /* this */
            getfield org.apache.commons.dbcp.DelegatingConnection._conn:Ljava/sql/Connection;
            invokeinterface java.sql.Connection.getTypeMap:()Ljava/util/Map;
         2: areturn
      StackMap locals:
      StackMap stack: java.sql.SQLException
         3: astore 1 /* e */
        start local 1 // java.sql.SQLException e
         4: aload 0 /* this */
            aload 1 /* e */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
            aconst_null
            areturn
        end local 1 // java.sql.SQLException e
        end local 0 // org.apache.commons.dbcp.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/apache/commons/dbcp/DelegatingConnection;
            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.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.dbcp.DelegatingConnection this
         0: .line 359
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.checkOpen:()V
         1: aload 0 /* this */
            getfield org.apache.commons.dbcp.DelegatingConnection._conn:Ljava/sql/Connection;
            invokeinterface java.sql.Connection.getWarnings:()Ljava/sql/SQLWarning;
         2: areturn
      StackMap locals:
      StackMap stack: java.sql.SQLException
         3: astore 1 /* e */
        start local 1 // java.sql.SQLException e
         4: aload 0 /* this */
            aload 1 /* e */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
            aconst_null
            areturn
        end local 1 // java.sql.SQLException e
        end local 0 // org.apache.commons.dbcp.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/apache/commons/dbcp/DelegatingConnection;
            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 isReadOnly();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.apache.commons.dbcp.DelegatingConnection this
         0: .line 362
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.checkOpen:()V
         1: aload 0 /* this */
            getfield org.apache.commons.dbcp.DelegatingConnection._conn:Ljava/sql/Connection;
            invokeinterface java.sql.Connection.isReadOnly:()Z
         2: ireturn
      StackMap locals:
      StackMap stack: java.sql.SQLException
         3: astore 1 /* e */
        start local 1 // java.sql.SQLException e
         4: aload 0 /* this */
            aload 1 /* e */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
            iconst_0
            ireturn
        end local 1 // java.sql.SQLException e
        end local 0 // org.apache.commons.dbcp.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/apache/commons/dbcp/DelegatingConnection;
            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.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.dbcp.DelegatingConnection this
        start local 1 // java.lang.String sql
         0: .line 365
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.checkOpen:()V
         1: aload 0 /* this */
            getfield org.apache.commons.dbcp.DelegatingConnection._conn:Ljava/sql/Connection;
            aload 1 /* sql */
            invokeinterface java.sql.Connection.nativeSQL:(Ljava/lang/String;)Ljava/lang/String;
         2: areturn
      StackMap locals:
      StackMap stack: java.sql.SQLException
         3: astore 2 /* e */
        start local 2 // java.sql.SQLException e
         4: aload 0 /* this */
            aload 2 /* e */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
            aconst_null
            areturn
        end local 2 // java.sql.SQLException e
        end local 1 // java.lang.String sql
        end local 0 // org.apache.commons.dbcp.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/apache/commons/dbcp/DelegatingConnection;
            0    5     1   sql  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
      sql   

  public void rollback();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.apache.commons.dbcp.DelegatingConnection this
         0: .line 368
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.checkOpen:()V
         1: aload 0 /* this */
            getfield org.apache.commons.dbcp.DelegatingConnection._conn:Ljava/sql/Connection;
            invokeinterface java.sql.Connection.rollback:()V
         2: goto 5
      StackMap locals:
      StackMap stack: java.sql.SQLException
         3: astore 1 /* e */
        start local 1 // java.sql.SQLException e
         4: aload 0 /* this */
            aload 1 /* e */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
        end local 1 // java.sql.SQLException e
      StackMap locals:
      StackMap stack:
         5: return
        end local 0 // org.apache.commons.dbcp.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/apache/commons/dbcp/DelegatingConnection;
            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 setAutoCommit(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.apache.commons.dbcp.DelegatingConnection this
        start local 1 // boolean autoCommit
         0: .line 371
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.checkOpen:()V
         1: aload 0 /* this */
            getfield org.apache.commons.dbcp.DelegatingConnection._conn:Ljava/sql/Connection;
            iload 1 /* autoCommit */
            invokeinterface java.sql.Connection.setAutoCommit:(Z)V
         2: goto 5
      StackMap locals:
      StackMap stack: java.sql.SQLException
         3: astore 2 /* e */
        start local 2 // java.sql.SQLException e
         4: aload 0 /* this */
            aload 2 /* e */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
        end local 2 // java.sql.SQLException e
      StackMap locals:
      StackMap stack:
         5: return
        end local 1 // boolean autoCommit
        end local 0 // org.apache.commons.dbcp.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    6     0        this  Lorg/apache/commons/dbcp/DelegatingConnection;
            0    6     1  autoCommit  Z
            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
      autoCommit  

  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.dbcp.DelegatingConnection this
        start local 1 // java.lang.String catalog
         0: .line 374
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.checkOpen:()V
         1: aload 0 /* this */
            getfield org.apache.commons.dbcp.DelegatingConnection._conn:Ljava/sql/Connection;
            aload 1 /* catalog */
            invokeinterface java.sql.Connection.setCatalog:(Ljava/lang/String;)V
         2: goto 5
      StackMap locals:
      StackMap stack: java.sql.SQLException
         3: astore 2 /* e */
        start local 2 // java.sql.SQLException e
         4: aload 0 /* this */
            aload 2 /* e */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
        end local 2 // java.sql.SQLException e
      StackMap locals:
      StackMap stack:
         5: return
        end local 1 // java.lang.String catalog
        end local 0 // org.apache.commons.dbcp.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    6     0     this  Lorg/apache/commons/dbcp/DelegatingConnection;
            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  

  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.dbcp.DelegatingConnection this
        start local 1 // boolean readOnly
         0: .line 377
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.checkOpen:()V
         1: aload 0 /* this */
            getfield org.apache.commons.dbcp.DelegatingConnection._conn:Ljava/sql/Connection;
            iload 1 /* readOnly */
            invokeinterface java.sql.Connection.setReadOnly:(Z)V
         2: goto 5
      StackMap locals:
      StackMap stack: java.sql.SQLException
         3: astore 2 /* e */
        start local 2 // java.sql.SQLException e
         4: aload 0 /* this */
            aload 2 /* e */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
        end local 2 // java.sql.SQLException e
      StackMap locals:
      StackMap stack:
         5: return
        end local 1 // boolean readOnly
        end local 0 // org.apache.commons.dbcp.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    6     0      this  Lorg/apache/commons/dbcp/DelegatingConnection;
            0    6     1  readOnly  Z
            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
      readOnly  

  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.dbcp.DelegatingConnection this
        start local 1 // int level
         0: .line 380
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.checkOpen:()V
         1: aload 0 /* this */
            getfield org.apache.commons.dbcp.DelegatingConnection._conn:Ljava/sql/Connection;
            iload 1 /* level */
            invokeinterface java.sql.Connection.setTransactionIsolation:(I)V
         2: goto 5
      StackMap locals:
      StackMap stack: java.sql.SQLException
         3: astore 2 /* e */
        start local 2 // java.sql.SQLException e
         4: aload 0 /* this */
            aload 2 /* e */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
        end local 2 // java.sql.SQLException e
      StackMap locals:
      StackMap stack:
         5: return
        end local 1 // int level
        end local 0 // org.apache.commons.dbcp.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Lorg/apache/commons/dbcp/DelegatingConnection;
            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  

  public void setTypeMap(java.util.Map);
    descriptor: (Ljava/util/Map;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.apache.commons.dbcp.DelegatingConnection this
        start local 1 // java.util.Map map
         0: .line 383
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.checkOpen:()V
         1: aload 0 /* this */
            getfield org.apache.commons.dbcp.DelegatingConnection._conn:Ljava/sql/Connection;
            aload 1 /* map */
            invokeinterface java.sql.Connection.setTypeMap:(Ljava/util/Map;)V
         2: goto 5
      StackMap locals:
      StackMap stack: java.sql.SQLException
         3: astore 2 /* e */
        start local 2 // java.sql.SQLException e
         4: aload 0 /* this */
            aload 2 /* e */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
        end local 2 // java.sql.SQLException e
      StackMap locals:
      StackMap stack:
         5: return
        end local 1 // java.util.Map map
        end local 0 // org.apache.commons.dbcp.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/apache/commons/dbcp/DelegatingConnection;
            0    6     1   map  Ljava/util/Map;
            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
      map   

  public boolean isClosed();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.dbcp.DelegatingConnection this
         0: .line 386
            aload 0 /* this */
            getfield org.apache.commons.dbcp.DelegatingConnection._closed:Z
            ifne 1
            aload 0 /* this */
            getfield org.apache.commons.dbcp.DelegatingConnection._conn: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.dbcp.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/commons/dbcp/DelegatingConnection;
    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.dbcp.DelegatingConnection this
         0: .line 390
            aload 0 /* this */
            getfield org.apache.commons.dbcp.DelegatingConnection._closed:Z
            ifeq 12
         1: .line 391
            aload 0 /* this */
            getfield org.apache.commons.dbcp.DelegatingConnection._conn:Ljava/sql/Connection;
            ifnull 9
         2: .line 392
            ldc ""
            astore 1 /* label */
        start local 1 // java.lang.String label
         3: .line 394
            aload 0 /* this */
            getfield org.apache.commons.dbcp.DelegatingConnection._conn:Ljava/sql/Connection;
            invokevirtual java.lang.Object.toString:()Ljava/lang/String;
            astore 1 /* label */
         4: .line 395
            goto 6
      StackMap locals: org.apache.commons.dbcp.DelegatingConnection java.lang.String
      StackMap stack: java.lang.Exception
         5: pop
         6: .line 398
      StackMap locals:
      StackMap stack:
            new java.sql.SQLException
            dup
         7: .line 399
            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;
         8: .line 398
            invokespecial java.sql.SQLException.<init>:(Ljava/lang/String;)V
            athrow
        end local 1 // java.lang.String label
         9: .line 401
      StackMap locals:
      StackMap stack:
            new java.sql.SQLException
            dup
        10: .line 402
            ldc "Connection is null."
        11: .line 401
            invokespecial java.sql.SQLException.<init>:(Ljava/lang/String;)V
            athrow
        12: .line 405
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.apache.commons.dbcp.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   13     0   this  Lorg/apache/commons/dbcp/DelegatingConnection;
            3    9     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.dbcp.DelegatingConnection this
         0: .line 408
            aload 0 /* this */
            iconst_0
            putfield org.apache.commons.dbcp.DelegatingConnection._closed:Z
         1: .line 409
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.setLastUsed:()V
         2: .line 410
            aload 0 /* this */
            getfield org.apache.commons.dbcp.DelegatingConnection._conn:Ljava/sql/Connection;
            instanceof org.apache.commons.dbcp.DelegatingConnection
            ifeq 4
         3: .line 411
            aload 0 /* this */
            getfield org.apache.commons.dbcp.DelegatingConnection._conn:Ljava/sql/Connection;
            checkcast org.apache.commons.dbcp.DelegatingConnection
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.activate:()V
         4: .line 413
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.apache.commons.dbcp.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/apache/commons/dbcp/DelegatingConnection;

  protected void passivate();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=5, args_size=1
        start local 0 // org.apache.commons.dbcp.DelegatingConnection this
         0: .line 420
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.getTrace:()Ljava/util/List;
            astore 1 /* traces */
        start local 1 // java.util.List traces
         1: .line 421
            aload 1 /* traces */
            ifnull 12
         2: .line 422
            aload 1 /* traces */
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 2 /* traceIter */
        start local 2 // java.util.Iterator traceIter
         3: .line 423
            goto 10
         4: .line 424
      StackMap locals: java.util.List java.util.Iterator
      StackMap stack:
            aload 2 /* traceIter */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            astore 3 /* trace */
        start local 3 // java.lang.Object trace
         5: .line 425
            aload 3 /* trace */
            instanceof java.sql.Statement
            ifeq 8
         6: .line 426
            aload 3 /* trace */
            checkcast java.sql.Statement
            invokeinterface java.sql.Statement.close:()V
         7: .line 427
            goto 10
      StackMap locals: java.lang.Object
      StackMap stack:
         8: aload 3 /* trace */
            instanceof java.sql.ResultSet
            ifeq 10
         9: .line 430
            aload 3 /* trace */
            checkcast java.sql.ResultSet
            invokeinterface java.sql.ResultSet.close:()V
        end local 3 // java.lang.Object trace
        10: .line 423
      StackMap locals:
      StackMap stack:
            aload 2 /* traceIter */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 4
        11: .line 433
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.clearTrace:()V
        end local 2 // java.util.Iterator traceIter
        12: .line 435
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            lconst_0
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.setLastUsed:(J)V
        13: .line 436
            aload 0 /* this */
            getfield org.apache.commons.dbcp.DelegatingConnection._conn:Ljava/sql/Connection;
            instanceof org.apache.commons.dbcp.DelegatingConnection
            ifeq 19
        14: .line 437
            aload 0 /* this */
            getfield org.apache.commons.dbcp.DelegatingConnection._conn:Ljava/sql/Connection;
            checkcast org.apache.commons.dbcp.DelegatingConnection
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.passivate:()V
        end local 1 // java.util.List traces
        15: .line 439
            goto 19
        16: .line 440
      StackMap locals: org.apache.commons.dbcp.DelegatingConnection
      StackMap stack: java.lang.Throwable
            astore 4
        17: .line 441
            aload 0 /* this */
            iconst_1
            putfield org.apache.commons.dbcp.DelegatingConnection._closed:Z
        18: .line 442
            aload 4
            athrow
        19: .line 441
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield org.apache.commons.dbcp.DelegatingConnection._closed:Z
        20: .line 443
            return
        end local 0 // org.apache.commons.dbcp.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   21     0       this  Lorg/apache/commons/dbcp/DelegatingConnection;
            1   15     1     traces  Ljava/util/List;
            3   12     2  traceIter  Ljava/util/Iterator;
            5   10     3      trace  Ljava/lang/Object;
      Exception table:
        from    to  target  type
           0    16      16  any
    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.dbcp.DelegatingConnection this
         0: .line 446
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.checkOpen:()V
         1: aload 0 /* this */
            getfield org.apache.commons.dbcp.DelegatingConnection._conn:Ljava/sql/Connection;
            invokeinterface java.sql.Connection.getHoldability:()I
         2: ireturn
      StackMap locals:
      StackMap stack: java.sql.SQLException
         3: astore 1 /* e */
        start local 1 // java.sql.SQLException e
         4: aload 0 /* this */
            aload 1 /* e */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
            iconst_0
            ireturn
        end local 1 // java.sql.SQLException e
        end local 0 // org.apache.commons.dbcp.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/apache/commons/dbcp/DelegatingConnection;
            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 setHoldability(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.apache.commons.dbcp.DelegatingConnection this
        start local 1 // int holdability
         0: .line 449
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.checkOpen:()V
         1: aload 0 /* this */
            getfield org.apache.commons.dbcp.DelegatingConnection._conn:Ljava/sql/Connection;
            iload 1 /* holdability */
            invokeinterface java.sql.Connection.setHoldability:(I)V
         2: goto 5
      StackMap locals:
      StackMap stack: java.sql.SQLException
         3: astore 2 /* e */
        start local 2 // java.sql.SQLException e
         4: aload 0 /* this */
            aload 2 /* e */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
        end local 2 // java.sql.SQLException e
      StackMap locals:
      StackMap stack:
         5: return
        end local 1 // int holdability
        end local 0 // org.apache.commons.dbcp.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    6     0         this  Lorg/apache/commons/dbcp/DelegatingConnection;
            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  

  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.dbcp.DelegatingConnection this
         0: .line 452
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.checkOpen:()V
         1: aload 0 /* this */
            getfield org.apache.commons.dbcp.DelegatingConnection._conn:Ljava/sql/Connection;
            invokeinterface java.sql.Connection.setSavepoint:()Ljava/sql/Savepoint;
         2: areturn
      StackMap locals:
      StackMap stack: java.sql.SQLException
         3: astore 1 /* e */
        start local 1 // java.sql.SQLException e
         4: aload 0 /* this */
            aload 1 /* e */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
            aconst_null
            areturn
        end local 1 // java.sql.SQLException e
        end local 0 // org.apache.commons.dbcp.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/apache/commons/dbcp/DelegatingConnection;
            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.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.dbcp.DelegatingConnection this
        start local 1 // java.lang.String name
         0: .line 455
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.checkOpen:()V
         1: aload 0 /* this */
            getfield org.apache.commons.dbcp.DelegatingConnection._conn:Ljava/sql/Connection;
            aload 1 /* name */
            invokeinterface java.sql.Connection.setSavepoint:(Ljava/lang/String;)Ljava/sql/Savepoint;
         2: areturn
      StackMap locals:
      StackMap stack: java.sql.SQLException
         3: astore 2 /* e */
        start local 2 // java.sql.SQLException e
         4: aload 0 /* this */
            aload 2 /* e */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
            aconst_null
            areturn
        end local 2 // java.sql.SQLException e
        end local 1 // java.lang.String name
        end local 0 // org.apache.commons.dbcp.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/apache/commons/dbcp/DelegatingConnection;
            0    5     1  name  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
      name  

  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.dbcp.DelegatingConnection this
        start local 1 // java.sql.Savepoint savepoint
         0: .line 458
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.checkOpen:()V
         1: aload 0 /* this */
            getfield org.apache.commons.dbcp.DelegatingConnection._conn:Ljava/sql/Connection;
            aload 1 /* savepoint */
            invokeinterface java.sql.Connection.rollback:(Ljava/sql/Savepoint;)V
         2: goto 5
      StackMap locals:
      StackMap stack: java.sql.SQLException
         3: astore 2 /* e */
        start local 2 // java.sql.SQLException e
         4: aload 0 /* this */
            aload 2 /* e */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
        end local 2 // java.sql.SQLException e
      StackMap locals:
      StackMap stack:
         5: return
        end local 1 // java.sql.Savepoint savepoint
        end local 0 // org.apache.commons.dbcp.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    6     0       this  Lorg/apache/commons/dbcp/DelegatingConnection;
            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  

  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.dbcp.DelegatingConnection this
        start local 1 // java.sql.Savepoint savepoint
         0: .line 461
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.checkOpen:()V
         1: aload 0 /* this */
            getfield org.apache.commons.dbcp.DelegatingConnection._conn:Ljava/sql/Connection;
            aload 1 /* savepoint */
            invokeinterface java.sql.Connection.releaseSavepoint:(Ljava/sql/Savepoint;)V
         2: goto 5
      StackMap locals:
      StackMap stack: java.sql.SQLException
         3: astore 2 /* e */
        start local 2 // java.sql.SQLException e
         4: aload 0 /* this */
            aload 2 /* e */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
        end local 2 // java.sql.SQLException e
      StackMap locals:
      StackMap stack:
         5: return
        end local 1 // java.sql.Savepoint savepoint
        end local 0 // org.apache.commons.dbcp.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    6     0       this  Lorg/apache/commons/dbcp/DelegatingConnection;
            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  

  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.dbcp.DelegatingConnection this
        start local 1 // int resultSetType
        start local 2 // int resultSetConcurrency
        start local 3 // int resultSetHoldability
         0: .line 466
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.checkOpen:()V
         1: .line 468
            new org.apache.commons.dbcp.DelegatingStatement
            dup
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.commons.dbcp.DelegatingConnection._conn:Ljava/sql/Connection;
         2: .line 469
            iload 1 /* resultSetType */
            iload 2 /* resultSetConcurrency */
            iload 3 /* resultSetHoldability */
         3: .line 468
            invokeinterface java.sql.Connection.createStatement:(III)Ljava/sql/Statement;
            invokespecial org.apache.commons.dbcp.DelegatingStatement.<init>:(Lorg/apache/commons/dbcp/DelegatingConnection;Ljava/sql/Statement;)V
         4: areturn
         5: .line 471
      StackMap locals:
      StackMap stack: java.sql.SQLException
            astore 4 /* e */
        start local 4 // java.sql.SQLException e
         6: .line 472
            aload 0 /* this */
            aload 4 /* e */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
         7: .line 473
            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.dbcp.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0    8     0                  this  Lorg/apache/commons/dbcp/DelegatingConnection;
            0    8     1         resultSetType  I
            0    8     2  resultSetConcurrency  I
            0    8     3  resultSetHoldability  I
            6    8     4                     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
      resultSetType         
      resultSetConcurrency  
      resultSetHoldability  

  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.dbcp.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 480
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.checkOpen:()V
         1: .line 482
            new org.apache.commons.dbcp.DelegatingPreparedStatement
            dup
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.commons.dbcp.DelegatingConnection._conn:Ljava/sql/Connection;
         2: .line 483
            aload 1 /* sql */
            iload 2 /* resultSetType */
            iload 3 /* resultSetConcurrency */
            iload 4 /* resultSetHoldability */
         3: .line 482
            invokeinterface java.sql.Connection.prepareStatement:(Ljava/lang/String;III)Ljava/sql/PreparedStatement;
            invokespecial org.apache.commons.dbcp.DelegatingPreparedStatement.<init>:(Lorg/apache/commons/dbcp/DelegatingConnection;Ljava/sql/PreparedStatement;)V
         4: areturn
         5: .line 485
      StackMap locals:
      StackMap stack: java.sql.SQLException
            astore 5 /* e */
        start local 5 // java.sql.SQLException e
         6: .line 486
            aload 0 /* this */
            aload 5 /* e */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
         7: .line 487
            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.dbcp.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0    8     0                  this  Lorg/apache/commons/dbcp/DelegatingConnection;
            0    8     1                   sql  Ljava/lang/String;
            0    8     2         resultSetType  I
            0    8     3  resultSetConcurrency  I
            0    8     4  resultSetHoldability  I
            6    8     5                     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                   
      resultSetType         
      resultSetConcurrency  
      resultSetHoldability  

  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.dbcp.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 494
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.checkOpen:()V
         1: .line 496
            new org.apache.commons.dbcp.DelegatingCallableStatement
            dup
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.commons.dbcp.DelegatingConnection._conn:Ljava/sql/Connection;
         2: .line 497
            aload 1 /* sql */
            iload 2 /* resultSetType */
            iload 3 /* resultSetConcurrency */
            iload 4 /* resultSetHoldability */
         3: .line 496
            invokeinterface java.sql.Connection.prepareCall:(Ljava/lang/String;III)Ljava/sql/CallableStatement;
            invokespecial org.apache.commons.dbcp.DelegatingCallableStatement.<init>:(Lorg/apache/commons/dbcp/DelegatingConnection;Ljava/sql/CallableStatement;)V
         4: areturn
         5: .line 499
      StackMap locals:
      StackMap stack: java.sql.SQLException
            astore 5 /* e */
        start local 5 // java.sql.SQLException e
         6: .line 500
            aload 0 /* this */
            aload 5 /* e */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
         7: .line 501
            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.dbcp.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0    8     0                  this  Lorg/apache/commons/dbcp/DelegatingConnection;
            0    8     1                   sql  Ljava/lang/String;
            0    8     2         resultSetType  I
            0    8     3  resultSetConcurrency  I
            0    8     4  resultSetHoldability  I
            6    8     5                     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                   
      resultSetType         
      resultSetConcurrency  
      resultSetHoldability  

  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.dbcp.DelegatingConnection this
        start local 1 // java.lang.String sql
        start local 2 // int autoGeneratedKeys
         0: .line 506
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.checkOpen:()V
         1: .line 508
            new org.apache.commons.dbcp.DelegatingPreparedStatement
            dup
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.commons.dbcp.DelegatingConnection._conn:Ljava/sql/Connection;
         2: .line 509
            aload 1 /* sql */
            iload 2 /* autoGeneratedKeys */
         3: .line 508
            invokeinterface java.sql.Connection.prepareStatement:(Ljava/lang/String;I)Ljava/sql/PreparedStatement;
            invokespecial org.apache.commons.dbcp.DelegatingPreparedStatement.<init>:(Lorg/apache/commons/dbcp/DelegatingConnection;Ljava/sql/PreparedStatement;)V
         4: areturn
         5: .line 511
      StackMap locals:
      StackMap stack: java.sql.SQLException
            astore 3 /* e */
        start local 3 // java.sql.SQLException e
         6: .line 512
            aload 0 /* this */
            aload 3 /* e */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
         7: .line 513
            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.dbcp.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    8     0               this  Lorg/apache/commons/dbcp/DelegatingConnection;
            0    8     1                sql  Ljava/lang/String;
            0    8     2  autoGeneratedKeys  I
            6    8     3                  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                
      autoGeneratedKeys  

  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.dbcp.DelegatingConnection this
        start local 1 // java.lang.String sql
        start local 2 // int[] columnIndexes
         0: .line 518
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.checkOpen:()V
         1: .line 520
            new org.apache.commons.dbcp.DelegatingPreparedStatement
            dup
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.commons.dbcp.DelegatingConnection._conn:Ljava/sql/Connection;
         2: .line 521
            aload 1 /* sql */
            aload 2 /* columnIndexes */
         3: .line 520
            invokeinterface java.sql.Connection.prepareStatement:(Ljava/lang/String;[I)Ljava/sql/PreparedStatement;
            invokespecial org.apache.commons.dbcp.DelegatingPreparedStatement.<init>:(Lorg/apache/commons/dbcp/DelegatingConnection;Ljava/sql/PreparedStatement;)V
         4: areturn
         5: .line 523
      StackMap locals:
      StackMap stack: java.sql.SQLException
            astore 3 /* e */
        start local 3 // java.sql.SQLException e
         6: .line 524
            aload 0 /* this */
            aload 3 /* e */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
         7: .line 525
            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.dbcp.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    8     0           this  Lorg/apache/commons/dbcp/DelegatingConnection;
            0    8     1            sql  Ljava/lang/String;
            0    8     2  columnIndexes  [I
            6    8     3              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            
      columnIndexes  

  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.dbcp.DelegatingConnection this
        start local 1 // java.lang.String sql
        start local 2 // java.lang.String[] columnNames
         0: .line 530
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.checkOpen:()V
         1: .line 532
            new org.apache.commons.dbcp.DelegatingPreparedStatement
            dup
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.commons.dbcp.DelegatingConnection._conn:Ljava/sql/Connection;
         2: .line 533
            aload 1 /* sql */
            aload 2 /* columnNames */
         3: .line 532
            invokeinterface java.sql.Connection.prepareStatement:(Ljava/lang/String;[Ljava/lang/String;)Ljava/sql/PreparedStatement;
            invokespecial org.apache.commons.dbcp.DelegatingPreparedStatement.<init>:(Lorg/apache/commons/dbcp/DelegatingConnection;Ljava/sql/PreparedStatement;)V
         4: areturn
         5: .line 535
      StackMap locals:
      StackMap stack: java.sql.SQLException
            astore 3 /* e */
        start local 3 // java.sql.SQLException e
         6: .line 536
            aload 0 /* this */
            aload 3 /* e */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
         7: .line 537
            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.dbcp.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    8     0         this  Lorg/apache/commons/dbcp/DelegatingConnection;
            0    8     1          sql  Ljava/lang/String;
            0    8     2  columnNames  [Ljava/lang/String;
            6    8     3            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          
      columnNames  

  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.dbcp.DelegatingConnection this
        start local 1 // java.lang.Class iface
         0: .line 544
            aload 1 /* iface */
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.isAssignableFrom:(Ljava/lang/Class;)Z
            ifne 1
            aload 0 /* this */
            getfield org.apache.commons.dbcp.DelegatingConnection._conn:Ljava/sql/Connection;
            aload 1 /* iface */
            invokeinterface java.sql.Connection.isWrapperFor:(Ljava/lang/Class;)Z
            ifne 1
            iconst_0
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_1
            ireturn
        end local 1 // java.lang.Class iface
        end local 0 // org.apache.commons.dbcp.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lorg/apache/commons/dbcp/DelegatingConnection;
            0    2     1  iface  Ljava/lang/Class<*>;
    Exceptions:
      throws java.sql.SQLException
    Signature: (Ljava/lang/Class<*>;)Z
    MethodParameters:
       Name  Flags
      iface  

  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.dbcp.DelegatingConnection this
        start local 1 // java.lang.Class iface
         0: .line 548
            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 549
            aload 1 /* iface */
            aload 0 /* this */
            invokevirtual java.lang.Class.cast:(Ljava/lang/Object;)Ljava/lang/Object;
            areturn
         2: .line 550
      StackMap locals:
      StackMap stack:
            aload 1 /* iface */
            aload 0 /* this */
            getfield org.apache.commons.dbcp.DelegatingConnection._conn:Ljava/sql/Connection;
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.isAssignableFrom:(Ljava/lang/Class;)Z
            ifeq 4
         3: .line 551
            aload 1 /* iface */
            aload 0 /* this */
            getfield org.apache.commons.dbcp.DelegatingConnection._conn:Ljava/sql/Connection;
            invokevirtual java.lang.Class.cast:(Ljava/lang/Object;)Ljava/lang/Object;
            areturn
         4: .line 553
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.dbcp.DelegatingConnection._conn: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.dbcp.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lorg/apache/commons/dbcp/DelegatingConnection;
            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  

  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.dbcp.DelegatingConnection this
        start local 1 // java.lang.String typeName
        start local 2 // java.lang.Object[] elements
         0: .line 558
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.checkOpen:()V
         1: .line 560
            aload 0 /* this */
            getfield org.apache.commons.dbcp.DelegatingConnection._conn: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 562
      StackMap locals:
      StackMap stack: java.sql.SQLException
            astore 3 /* e */
        start local 3 // java.sql.SQLException e
         4: .line 563
            aload 0 /* this */
            aload 3 /* e */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
         5: .line 564
            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.dbcp.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    6     0      this  Lorg/apache/commons/dbcp/DelegatingConnection;
            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  
      elements  

  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.dbcp.DelegatingConnection this
         0: .line 569
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.checkOpen:()V
         1: .line 571
            aload 0 /* this */
            getfield org.apache.commons.dbcp.DelegatingConnection._conn:Ljava/sql/Connection;
            invokeinterface java.sql.Connection.createBlob:()Ljava/sql/Blob;
         2: areturn
         3: .line 573
      StackMap locals:
      StackMap stack: java.sql.SQLException
            astore 1 /* e */
        start local 1 // java.sql.SQLException e
         4: .line 574
            aload 0 /* this */
            aload 1 /* e */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
         5: .line 575
            aconst_null
            areturn
        end local 1 // java.sql.SQLException e
        end local 0 // org.apache.commons.dbcp.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/apache/commons/dbcp/DelegatingConnection;
            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.dbcp.DelegatingConnection this
         0: .line 580
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.checkOpen:()V
         1: .line 582
            aload 0 /* this */
            getfield org.apache.commons.dbcp.DelegatingConnection._conn:Ljava/sql/Connection;
            invokeinterface java.sql.Connection.createClob:()Ljava/sql/Clob;
         2: areturn
         3: .line 584
      StackMap locals:
      StackMap stack: java.sql.SQLException
            astore 1 /* e */
        start local 1 // java.sql.SQLException e
         4: .line 585
            aload 0 /* this */
            aload 1 /* e */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
         5: .line 586
            aconst_null
            areturn
        end local 1 // java.sql.SQLException e
        end local 0 // org.apache.commons.dbcp.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/apache/commons/dbcp/DelegatingConnection;
            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.dbcp.DelegatingConnection this
         0: .line 591
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.checkOpen:()V
         1: .line 593
            aload 0 /* this */
            getfield org.apache.commons.dbcp.DelegatingConnection._conn:Ljava/sql/Connection;
            invokeinterface java.sql.Connection.createNClob:()Ljava/sql/NClob;
         2: areturn
         3: .line 595
      StackMap locals:
      StackMap stack: java.sql.SQLException
            astore 1 /* e */
        start local 1 // java.sql.SQLException e
         4: .line 596
            aload 0 /* this */
            aload 1 /* e */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
         5: .line 597
            aconst_null
            areturn
        end local 1 // java.sql.SQLException e
        end local 0 // org.apache.commons.dbcp.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/apache/commons/dbcp/DelegatingConnection;
            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.dbcp.DelegatingConnection this
         0: .line 602
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.checkOpen:()V
         1: .line 604
            aload 0 /* this */
            getfield org.apache.commons.dbcp.DelegatingConnection._conn:Ljava/sql/Connection;
            invokeinterface java.sql.Connection.createSQLXML:()Ljava/sql/SQLXML;
         2: areturn
         3: .line 606
      StackMap locals:
      StackMap stack: java.sql.SQLException
            astore 1 /* e */
        start local 1 // java.sql.SQLException e
         4: .line 607
            aload 0 /* this */
            aload 1 /* e */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
         5: .line 608
            aconst_null
            areturn
        end local 1 // java.sql.SQLException e
        end local 0 // org.apache.commons.dbcp.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/apache/commons/dbcp/DelegatingConnection;
            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.dbcp.DelegatingConnection this
        start local 1 // java.lang.String typeName
        start local 2 // java.lang.Object[] attributes
         0: .line 613
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.checkOpen:()V
         1: .line 615
            aload 0 /* this */
            getfield org.apache.commons.dbcp.DelegatingConnection._conn: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 617
      StackMap locals:
      StackMap stack: java.sql.SQLException
            astore 3 /* e */
        start local 3 // java.sql.SQLException e
         4: .line 618
            aload 0 /* this */
            aload 3 /* e */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
         5: .line 619
            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.dbcp.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    6     0        this  Lorg/apache/commons/dbcp/DelegatingConnection;
            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    
      attributes  

  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.dbcp.DelegatingConnection this
        start local 1 // int timeout
         0: .line 624
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.checkOpen:()V
         1: .line 626
            aload 0 /* this */
            getfield org.apache.commons.dbcp.DelegatingConnection._conn:Ljava/sql/Connection;
            iload 1 /* timeout */
            invokeinterface java.sql.Connection.isValid:(I)Z
         2: ireturn
         3: .line 628
      StackMap locals:
      StackMap stack: java.sql.SQLException
            astore 2 /* e */
        start local 2 // java.sql.SQLException e
         4: .line 629
            aload 0 /* this */
            aload 2 /* e */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
         5: .line 630
            iconst_0
            ireturn
        end local 2 // java.sql.SQLException e
        end local 1 // int timeout
        end local 0 // org.apache.commons.dbcp.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    6     0     this  Lorg/apache/commons/dbcp/DelegatingConnection;
            0    6     1  timeout  I
            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
      timeout  

  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.dbcp.DelegatingConnection this
        start local 1 // java.lang.String name
        start local 2 // java.lang.String value
         0: .line 636
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.checkOpen:()V
         1: .line 637
            aload 0 /* this */
            getfield org.apache.commons.dbcp.DelegatingConnection._conn:Ljava/sql/Connection;
            aload 1 /* name */
            aload 2 /* value */
            invokeinterface java.sql.Connection.setClientInfo:(Ljava/lang/String;Ljava/lang/String;)V
         2: .line 638
            goto 7
         3: .line 639
      StackMap locals:
      StackMap stack: java.sql.SQLClientInfoException
            astore 3 /* e */
        start local 3 // java.sql.SQLClientInfoException e
         4: .line 640
            aload 3 /* e */
            athrow
        end local 3 // java.sql.SQLClientInfoException e
         5: .line 642
      StackMap locals:
      StackMap stack: java.sql.SQLException
            astore 3 /* e */
        start local 3 // java.sql.SQLException e
         6: .line 643
            new java.sql.SQLClientInfoException
            dup
            ldc "Connection is closed."
            getstatic org.apache.commons.dbcp.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 645
      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.dbcp.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    8     0   this  Lorg/apache/commons/dbcp/DelegatingConnection;
            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   
      value  

  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.dbcp.DelegatingConnection this
        start local 1 // java.util.Properties properties
         0: .line 649
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.checkOpen:()V
         1: .line 650
            aload 0 /* this */
            getfield org.apache.commons.dbcp.DelegatingConnection._conn:Ljava/sql/Connection;
            aload 1 /* properties */
            invokeinterface java.sql.Connection.setClientInfo:(Ljava/util/Properties;)V
         2: .line 651
            goto 7
         3: .line 652
      StackMap locals:
      StackMap stack: java.sql.SQLClientInfoException
            astore 2 /* e */
        start local 2 // java.sql.SQLClientInfoException e
         4: .line 653
            aload 2 /* e */
            athrow
        end local 2 // java.sql.SQLClientInfoException e
         5: .line 655
      StackMap locals:
      StackMap stack: java.sql.SQLException
            astore 2 /* e */
        start local 2 // java.sql.SQLException e
         6: .line 656
            new java.sql.SQLClientInfoException
            dup
            ldc "Connection is closed."
            getstatic org.apache.commons.dbcp.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 658
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.util.Properties properties
        end local 0 // org.apache.commons.dbcp.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    8     0        this  Lorg/apache/commons/dbcp/DelegatingConnection;
            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  

  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.dbcp.DelegatingConnection this
         0: .line 661
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.checkOpen:()V
         1: .line 663
            aload 0 /* this */
            getfield org.apache.commons.dbcp.DelegatingConnection._conn:Ljava/sql/Connection;
            invokeinterface java.sql.Connection.getClientInfo:()Ljava/util/Properties;
         2: areturn
         3: .line 665
      StackMap locals:
      StackMap stack: java.sql.SQLException
            astore 1 /* e */
        start local 1 // java.sql.SQLException e
         4: .line 666
            aload 0 /* this */
            aload 1 /* e */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
         5: .line 667
            aconst_null
            areturn
        end local 1 // java.sql.SQLException e
        end local 0 // org.apache.commons.dbcp.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/apache/commons/dbcp/DelegatingConnection;
            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.dbcp.DelegatingConnection this
        start local 1 // java.lang.String name
         0: .line 672
            aload 0 /* this */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.checkOpen:()V
         1: .line 674
            aload 0 /* this */
            getfield org.apache.commons.dbcp.DelegatingConnection._conn:Ljava/sql/Connection;
            aload 1 /* name */
            invokeinterface java.sql.Connection.getClientInfo:(Ljava/lang/String;)Ljava/lang/String;
         2: areturn
         3: .line 676
      StackMap locals:
      StackMap stack: java.sql.SQLException
            astore 2 /* e */
        start local 2 // java.sql.SQLException e
         4: .line 677
            aload 0 /* this */
            aload 2 /* e */
            invokevirtual org.apache.commons.dbcp.DelegatingConnection.handleException:(Ljava/sql/SQLException;)V
         5: .line 678
            aconst_null
            areturn
        end local 2 // java.sql.SQLException e
        end local 1 // java.lang.String name
        end local 0 // org.apache.commons.dbcp.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/apache/commons/dbcp/DelegatingConnection;
            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  

  public java.lang.String getSchema();
    descriptor: ()Ljava/lang/String;
    flags: (0x1001) ACC_PUBLIC, ACC_SYNTHETIC
    Code:
      stack=3, locals=1, args_size=1
         0: .line 65
            new java.lang.Error
            dup
            ldc "Unresolved compilation problem: \n\tThe type DelegatingConnection must implement the inherited abstract method Connection.getSchema()\n"
            invokespecial java.lang.Error.<init>:(Ljava/lang/String;)V
            athrow
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.sql.SQLException

  public void setSchema(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x1001) ACC_PUBLIC, ACC_SYNTHETIC
    Code:
      stack=3, locals=2, args_size=2
         0: .line 65
            new java.lang.Error
            dup
            ldc "Unresolved compilation problem: \n\tThe type DelegatingConnection must implement the inherited abstract method Connection.setSchema(String)\n"
            invokespecial java.lang.Error.<init>:(Ljava/lang/String;)V
            athrow
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
      Name  Flags
            

  public int getNetworkTimeout();
    descriptor: ()I
    flags: (0x1001) ACC_PUBLIC, ACC_SYNTHETIC
    Code:
      stack=3, locals=1, args_size=1
         0: .line 65
            new java.lang.Error
            dup
            ldc "Unresolved compilation problem: \n\tThe type DelegatingConnection must implement the inherited abstract method Connection.getNetworkTimeout()\n"
            invokespecial java.lang.Error.<init>:(Ljava/lang/String;)V
            athrow
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.sql.SQLException

  public void abort(java.util.concurrent.Executor);
    descriptor: (Ljava/util/concurrent/Executor;)V
    flags: (0x1001) ACC_PUBLIC, ACC_SYNTHETIC
    Code:
      stack=3, locals=2, args_size=2
         0: .line 65
            new java.lang.Error
            dup
            ldc "Unresolved compilation problem: \n\tThe type DelegatingConnection must implement the inherited abstract method Connection.abort(Executor)\n"
            invokespecial java.lang.Error.<init>:(Ljava/lang/String;)V
            athrow
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
      Name  Flags
            

  public void setNetworkTimeout(java.util.concurrent.Executor, int);
    descriptor: (Ljava/util/concurrent/Executor;I)V
    flags: (0x1001) ACC_PUBLIC, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 65
            new java.lang.Error
            dup
            ldc "Unresolved compilation problem: \n\tThe type DelegatingConnection must implement the inherited abstract method Connection.setNetworkTimeout(Executor, int)\n"
            invokespecial java.lang.Error.<init>:(Ljava/lang/String;)V
            athrow
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
      Name  Flags
            
            
}
SourceFile: "DelegatingConnection.java"