public class org.skife.jdbi.v2.DelegatingConnection implements java.sql.Connection
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.skife.jdbi.v2.DelegatingConnection
  super_class: java.lang.Object
{
  private final java.sql.Connection connection;
    descriptor: Ljava/sql/Connection;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  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.skife.jdbi.v2.DelegatingConnection this
        start local 1 // java.sql.Connection delegate
         0: .line 44
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 46
            aload 0 /* this */
            aload 1 /* delegate */
            putfield org.skife.jdbi.v2.DelegatingConnection.connection:Ljava/sql/Connection;
         2: .line 47
            return
        end local 1 // java.sql.Connection delegate
        end local 0 // org.skife.jdbi.v2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lorg/skife/jdbi/v2/DelegatingConnection;
            0    3     1  delegate  Ljava/sql/Connection;
    MethodParameters:
          Name  Flags
      delegate  

  public java.sql.Statement createStatement();
    descriptor: ()Ljava/sql/Statement;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.skife.jdbi.v2.DelegatingConnection this
         0: .line 52
            aload 0 /* this */
            getfield org.skife.jdbi.v2.DelegatingConnection.connection:Ljava/sql/Connection;
            invokeinterface java.sql.Connection.createStatement:()Ljava/sql/Statement;
            areturn
        end local 0 // org.skife.jdbi.v2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/skife/jdbi/v2/DelegatingConnection;
    Exceptions:
      throws java.sql.SQLException

  public java.sql.PreparedStatement prepareStatement(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/sql/PreparedStatement;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.skife.jdbi.v2.DelegatingConnection this
        start local 1 // java.lang.String s
         0: .line 58
            aload 0 /* this */
            getfield org.skife.jdbi.v2.DelegatingConnection.connection:Ljava/sql/Connection;
            aload 1 /* s */
            invokeinterface java.sql.Connection.prepareStatement:(Ljava/lang/String;)Ljava/sql/PreparedStatement;
            areturn
        end local 1 // java.lang.String s
        end local 0 // org.skife.jdbi.v2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/skife/jdbi/v2/DelegatingConnection;
            0    1     1     s  Ljava/lang/String;
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
      Name  Flags
      s     

  public java.sql.CallableStatement prepareCall(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/sql/CallableStatement;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.skife.jdbi.v2.DelegatingConnection this
        start local 1 // java.lang.String s
         0: .line 64
            aload 0 /* this */
            getfield org.skife.jdbi.v2.DelegatingConnection.connection:Ljava/sql/Connection;
            aload 1 /* s */
            invokeinterface java.sql.Connection.prepareCall:(Ljava/lang/String;)Ljava/sql/CallableStatement;
            areturn
        end local 1 // java.lang.String s
        end local 0 // org.skife.jdbi.v2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/skife/jdbi/v2/DelegatingConnection;
            0    1     1     s  Ljava/lang/String;
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
      Name  Flags
      s     

  public java.lang.String nativeSQL(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.skife.jdbi.v2.DelegatingConnection this
        start local 1 // java.lang.String s
         0: .line 70
            aload 0 /* this */
            getfield org.skife.jdbi.v2.DelegatingConnection.connection:Ljava/sql/Connection;
            aload 1 /* s */
            invokeinterface java.sql.Connection.nativeSQL:(Ljava/lang/String;)Ljava/lang/String;
            areturn
        end local 1 // java.lang.String s
        end local 0 // org.skife.jdbi.v2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/skife/jdbi/v2/DelegatingConnection;
            0    1     1     s  Ljava/lang/String;
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
      Name  Flags
      s     

  public boolean getAutoCommit();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.skife.jdbi.v2.DelegatingConnection this
         0: .line 76
            aload 0 /* this */
            getfield org.skife.jdbi.v2.DelegatingConnection.connection:Ljava/sql/Connection;
            invokeinterface java.sql.Connection.getAutoCommit:()Z
            ireturn
        end local 0 // org.skife.jdbi.v2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/skife/jdbi/v2/DelegatingConnection;
    Exceptions:
      throws java.sql.SQLException

  public void setAutoCommit(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.skife.jdbi.v2.DelegatingConnection this
        start local 1 // boolean b
         0: .line 82
            aload 0 /* this */
            getfield org.skife.jdbi.v2.DelegatingConnection.connection:Ljava/sql/Connection;
            iload 1 /* b */
            invokeinterface java.sql.Connection.setAutoCommit:(Z)V
         1: .line 83
            return
        end local 1 // boolean b
        end local 0 // org.skife.jdbi.v2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/skife/jdbi/v2/DelegatingConnection;
            0    2     1     b  Z
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
      Name  Flags
      b     

  public void commit();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.skife.jdbi.v2.DelegatingConnection this
         0: .line 88
            aload 0 /* this */
            getfield org.skife.jdbi.v2.DelegatingConnection.connection:Ljava/sql/Connection;
            invokeinterface java.sql.Connection.commit:()V
         1: .line 89
            return
        end local 0 // org.skife.jdbi.v2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/skife/jdbi/v2/DelegatingConnection;
    Exceptions:
      throws java.sql.SQLException

  public void rollback();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.skife.jdbi.v2.DelegatingConnection this
         0: .line 94
            aload 0 /* this */
            getfield org.skife.jdbi.v2.DelegatingConnection.connection:Ljava/sql/Connection;
            invokeinterface java.sql.Connection.rollback:()V
         1: .line 95
            return
        end local 0 // org.skife.jdbi.v2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/skife/jdbi/v2/DelegatingConnection;
    Exceptions:
      throws java.sql.SQLException

  public void close();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.skife.jdbi.v2.DelegatingConnection this
         0: .line 100
            aload 0 /* this */
            getfield org.skife.jdbi.v2.DelegatingConnection.connection:Ljava/sql/Connection;
            invokeinterface java.sql.Connection.close:()V
         1: .line 101
            return
        end local 0 // org.skife.jdbi.v2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/skife/jdbi/v2/DelegatingConnection;
    Exceptions:
      throws java.sql.SQLException

  public boolean isClosed();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.skife.jdbi.v2.DelegatingConnection this
         0: .line 106
            aload 0 /* this */
            getfield org.skife.jdbi.v2.DelegatingConnection.connection:Ljava/sql/Connection;
            invokeinterface java.sql.Connection.isClosed:()Z
            ireturn
        end local 0 // org.skife.jdbi.v2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/skife/jdbi/v2/DelegatingConnection;
    Exceptions:
      throws java.sql.SQLException

  public java.sql.DatabaseMetaData getMetaData();
    descriptor: ()Ljava/sql/DatabaseMetaData;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.skife.jdbi.v2.DelegatingConnection this
         0: .line 112
            aload 0 /* this */
            getfield org.skife.jdbi.v2.DelegatingConnection.connection:Ljava/sql/Connection;
            invokeinterface java.sql.Connection.getMetaData:()Ljava/sql/DatabaseMetaData;
            areturn
        end local 0 // org.skife.jdbi.v2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/skife/jdbi/v2/DelegatingConnection;
    Exceptions:
      throws java.sql.SQLException

  public boolean isReadOnly();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.skife.jdbi.v2.DelegatingConnection this
         0: .line 118
            aload 0 /* this */
            getfield org.skife.jdbi.v2.DelegatingConnection.connection:Ljava/sql/Connection;
            invokeinterface java.sql.Connection.isReadOnly:()Z
            ireturn
        end local 0 // org.skife.jdbi.v2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/skife/jdbi/v2/DelegatingConnection;
    Exceptions:
      throws java.sql.SQLException

  public void setReadOnly(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.skife.jdbi.v2.DelegatingConnection this
        start local 1 // boolean b
         0: .line 124
            aload 0 /* this */
            getfield org.skife.jdbi.v2.DelegatingConnection.connection:Ljava/sql/Connection;
            iload 1 /* b */
            invokeinterface java.sql.Connection.setReadOnly:(Z)V
         1: .line 125
            return
        end local 1 // boolean b
        end local 0 // org.skife.jdbi.v2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/skife/jdbi/v2/DelegatingConnection;
            0    2     1     b  Z
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
      Name  Flags
      b     

  public java.lang.String getCatalog();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.skife.jdbi.v2.DelegatingConnection this
         0: .line 130
            aload 0 /* this */
            getfield org.skife.jdbi.v2.DelegatingConnection.connection:Ljava/sql/Connection;
            invokeinterface java.sql.Connection.getCatalog:()Ljava/lang/String;
            areturn
        end local 0 // org.skife.jdbi.v2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/skife/jdbi/v2/DelegatingConnection;
    Exceptions:
      throws java.sql.SQLException

  public void setCatalog(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.skife.jdbi.v2.DelegatingConnection this
        start local 1 // java.lang.String s
         0: .line 136
            aload 0 /* this */
            getfield org.skife.jdbi.v2.DelegatingConnection.connection:Ljava/sql/Connection;
            aload 1 /* s */
            invokeinterface java.sql.Connection.setCatalog:(Ljava/lang/String;)V
         1: .line 137
            return
        end local 1 // java.lang.String s
        end local 0 // org.skife.jdbi.v2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/skife/jdbi/v2/DelegatingConnection;
            0    2     1     s  Ljava/lang/String;
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
      Name  Flags
      s     

  public int getTransactionIsolation();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.skife.jdbi.v2.DelegatingConnection this
         0: .line 142
            aload 0 /* this */
            getfield org.skife.jdbi.v2.DelegatingConnection.connection:Ljava/sql/Connection;
            invokeinterface java.sql.Connection.getTransactionIsolation:()I
            ireturn
        end local 0 // org.skife.jdbi.v2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/skife/jdbi/v2/DelegatingConnection;
    Exceptions:
      throws java.sql.SQLException

  public void setTransactionIsolation(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.skife.jdbi.v2.DelegatingConnection this
        start local 1 // int i
         0: .line 148
            aload 0 /* this */
            getfield org.skife.jdbi.v2.DelegatingConnection.connection:Ljava/sql/Connection;
            iload 1 /* i */
            invokeinterface java.sql.Connection.setTransactionIsolation:(I)V
         1: .line 149
            return
        end local 1 // int i
        end local 0 // org.skife.jdbi.v2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/skife/jdbi/v2/DelegatingConnection;
            0    2     1     i  I
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
      Name  Flags
      i     

  public java.sql.SQLWarning getWarnings();
    descriptor: ()Ljava/sql/SQLWarning;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.skife.jdbi.v2.DelegatingConnection this
         0: .line 154
            aload 0 /* this */
            getfield org.skife.jdbi.v2.DelegatingConnection.connection:Ljava/sql/Connection;
            invokeinterface java.sql.Connection.getWarnings:()Ljava/sql/SQLWarning;
            areturn
        end local 0 // org.skife.jdbi.v2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/skife/jdbi/v2/DelegatingConnection;
    Exceptions:
      throws java.sql.SQLException

  public void clearWarnings();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.skife.jdbi.v2.DelegatingConnection this
         0: .line 160
            aload 0 /* this */
            getfield org.skife.jdbi.v2.DelegatingConnection.connection:Ljava/sql/Connection;
            invokeinterface java.sql.Connection.clearWarnings:()V
         1: .line 161
            return
        end local 0 // org.skife.jdbi.v2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/skife/jdbi/v2/DelegatingConnection;
    Exceptions:
      throws java.sql.SQLException

  public java.sql.Statement createStatement(int, int);
    descriptor: (II)Ljava/sql/Statement;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.skife.jdbi.v2.DelegatingConnection this
        start local 1 // int i
        start local 2 // int i1
         0: .line 166
            aload 0 /* this */
            getfield org.skife.jdbi.v2.DelegatingConnection.connection:Ljava/sql/Connection;
            iload 1 /* i */
            iload 2 /* i1 */
            invokeinterface java.sql.Connection.createStatement:(II)Ljava/sql/Statement;
            areturn
        end local 2 // int i1
        end local 1 // int i
        end local 0 // org.skife.jdbi.v2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/skife/jdbi/v2/DelegatingConnection;
            0    1     1     i  I
            0    1     2    i1  I
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
      Name  Flags
      i     
      i1    

  public java.sql.PreparedStatement prepareStatement(java.lang.String, int, int);
    descriptor: (Ljava/lang/String;II)Ljava/sql/PreparedStatement;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.skife.jdbi.v2.DelegatingConnection this
        start local 1 // java.lang.String s
        start local 2 // int i
        start local 3 // int i1
         0: .line 172
            aload 0 /* this */
            getfield org.skife.jdbi.v2.DelegatingConnection.connection:Ljava/sql/Connection;
            aload 1 /* s */
            iload 2 /* i */
            iload 3 /* i1 */
            invokeinterface java.sql.Connection.prepareStatement:(Ljava/lang/String;II)Ljava/sql/PreparedStatement;
            areturn
        end local 3 // int i1
        end local 2 // int i
        end local 1 // java.lang.String s
        end local 0 // org.skife.jdbi.v2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/skife/jdbi/v2/DelegatingConnection;
            0    1     1     s  Ljava/lang/String;
            0    1     2     i  I
            0    1     3    i1  I
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
      Name  Flags
      s     
      i     
      i1    

  public java.sql.CallableStatement prepareCall(java.lang.String, int, int);
    descriptor: (Ljava/lang/String;II)Ljava/sql/CallableStatement;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.skife.jdbi.v2.DelegatingConnection this
        start local 1 // java.lang.String s
        start local 2 // int i
        start local 3 // int i1
         0: .line 178
            aload 0 /* this */
            getfield org.skife.jdbi.v2.DelegatingConnection.connection:Ljava/sql/Connection;
            aload 1 /* s */
            iload 2 /* i */
            iload 3 /* i1 */
            invokeinterface java.sql.Connection.prepareCall:(Ljava/lang/String;II)Ljava/sql/CallableStatement;
            areturn
        end local 3 // int i1
        end local 2 // int i
        end local 1 // java.lang.String s
        end local 0 // org.skife.jdbi.v2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/skife/jdbi/v2/DelegatingConnection;
            0    1     1     s  Ljava/lang/String;
            0    1     2     i  I
            0    1     3    i1  I
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
      Name  Flags
      s     
      i     
      i1    

  public java.util.Map<java.lang.String, java.lang.Class<?>> getTypeMap();
    descriptor: ()Ljava/util/Map;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.skife.jdbi.v2.DelegatingConnection this
         0: .line 184
            aload 0 /* this */
            getfield org.skife.jdbi.v2.DelegatingConnection.connection:Ljava/sql/Connection;
            invokeinterface java.sql.Connection.getTypeMap:()Ljava/util/Map;
            areturn
        end local 0 // org.skife.jdbi.v2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/skife/jdbi/v2/DelegatingConnection;
    Exceptions:
      throws java.sql.SQLException
    Signature: ()Ljava/util/Map<Ljava/lang/String;Ljava/lang/Class<*>;>;

  public void setTypeMap(java.util.Map<java.lang.String, java.lang.Class<?>>);
    descriptor: (Ljava/util/Map;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.skife.jdbi.v2.DelegatingConnection this
        start local 1 // java.util.Map map
         0: .line 190
            aload 0 /* this */
            getfield org.skife.jdbi.v2.DelegatingConnection.connection:Ljava/sql/Connection;
            aload 1 /* map */
            invokeinterface java.sql.Connection.setTypeMap:(Ljava/util/Map;)V
         1: .line 191
            return
        end local 1 // java.util.Map map
        end local 0 // org.skife.jdbi.v2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/skife/jdbi/v2/DelegatingConnection;
            0    2     1   map  Ljava/util/Map<Ljava/lang/String;Ljava/lang/Class<*>;>;
    Exceptions:
      throws java.sql.SQLException
    Signature: (Ljava/util/Map<Ljava/lang/String;Ljava/lang/Class<*>;>;)V
    MethodParameters:
      Name  Flags
      map   

  public int getHoldability();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.skife.jdbi.v2.DelegatingConnection this
         0: .line 196
            aload 0 /* this */
            getfield org.skife.jdbi.v2.DelegatingConnection.connection:Ljava/sql/Connection;
            invokeinterface java.sql.Connection.getHoldability:()I
            ireturn
        end local 0 // org.skife.jdbi.v2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/skife/jdbi/v2/DelegatingConnection;
    Exceptions:
      throws java.sql.SQLException

  public void setHoldability(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.skife.jdbi.v2.DelegatingConnection this
        start local 1 // int i
         0: .line 202
            aload 0 /* this */
            getfield org.skife.jdbi.v2.DelegatingConnection.connection:Ljava/sql/Connection;
            iload 1 /* i */
            invokeinterface java.sql.Connection.setHoldability:(I)V
         1: .line 203
            return
        end local 1 // int i
        end local 0 // org.skife.jdbi.v2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/skife/jdbi/v2/DelegatingConnection;
            0    2     1     i  I
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
      Name  Flags
      i     

  public java.sql.Savepoint setSavepoint();
    descriptor: ()Ljava/sql/Savepoint;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.skife.jdbi.v2.DelegatingConnection this
         0: .line 208
            aload 0 /* this */
            getfield org.skife.jdbi.v2.DelegatingConnection.connection:Ljava/sql/Connection;
            invokeinterface java.sql.Connection.setSavepoint:()Ljava/sql/Savepoint;
            areturn
        end local 0 // org.skife.jdbi.v2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/skife/jdbi/v2/DelegatingConnection;
    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=2, args_size=2
        start local 0 // org.skife.jdbi.v2.DelegatingConnection this
        start local 1 // java.lang.String s
         0: .line 214
            aload 0 /* this */
            getfield org.skife.jdbi.v2.DelegatingConnection.connection:Ljava/sql/Connection;
            aload 1 /* s */
            invokeinterface java.sql.Connection.setSavepoint:(Ljava/lang/String;)Ljava/sql/Savepoint;
            areturn
        end local 1 // java.lang.String s
        end local 0 // org.skife.jdbi.v2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/skife/jdbi/v2/DelegatingConnection;
            0    1     1     s  Ljava/lang/String;
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
      Name  Flags
      s     

  public void rollback(java.sql.Savepoint);
    descriptor: (Ljava/sql/Savepoint;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.skife.jdbi.v2.DelegatingConnection this
        start local 1 // java.sql.Savepoint savepoint
         0: .line 220
            aload 0 /* this */
            getfield org.skife.jdbi.v2.DelegatingConnection.connection:Ljava/sql/Connection;
            aload 1 /* savepoint */
            invokeinterface java.sql.Connection.rollback:(Ljava/sql/Savepoint;)V
         1: .line 221
            return
        end local 1 // java.sql.Savepoint savepoint
        end local 0 // org.skife.jdbi.v2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/skife/jdbi/v2/DelegatingConnection;
            0    2     1  savepoint  Ljava/sql/Savepoint;
    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=2, args_size=2
        start local 0 // org.skife.jdbi.v2.DelegatingConnection this
        start local 1 // java.sql.Savepoint savepoint
         0: .line 226
            aload 0 /* this */
            getfield org.skife.jdbi.v2.DelegatingConnection.connection:Ljava/sql/Connection;
            aload 1 /* savepoint */
            invokeinterface java.sql.Connection.releaseSavepoint:(Ljava/sql/Savepoint;)V
         1: .line 227
            return
        end local 1 // java.sql.Savepoint savepoint
        end local 0 // org.skife.jdbi.v2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/skife/jdbi/v2/DelegatingConnection;
            0    2     1  savepoint  Ljava/sql/Savepoint;
    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=4, locals=4, args_size=4
        start local 0 // org.skife.jdbi.v2.DelegatingConnection this
        start local 1 // int i
        start local 2 // int i1
        start local 3 // int i2
         0: .line 232
            aload 0 /* this */
            getfield org.skife.jdbi.v2.DelegatingConnection.connection:Ljava/sql/Connection;
            iload 1 /* i */
            iload 2 /* i1 */
            iload 3 /* i2 */
            invokeinterface java.sql.Connection.createStatement:(III)Ljava/sql/Statement;
            areturn
        end local 3 // int i2
        end local 2 // int i1
        end local 1 // int i
        end local 0 // org.skife.jdbi.v2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/skife/jdbi/v2/DelegatingConnection;
            0    1     1     i  I
            0    1     2    i1  I
            0    1     3    i2  I
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
      Name  Flags
      i     
      i1    
      i2    

  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=5, locals=5, args_size=5
        start local 0 // org.skife.jdbi.v2.DelegatingConnection this
        start local 1 // java.lang.String s
        start local 2 // int i
        start local 3 // int i1
        start local 4 // int i2
         0: .line 238
            aload 0 /* this */
            getfield org.skife.jdbi.v2.DelegatingConnection.connection:Ljava/sql/Connection;
            aload 1 /* s */
            iload 2 /* i */
            iload 3 /* i1 */
            iload 4 /* i2 */
            invokeinterface java.sql.Connection.prepareStatement:(Ljava/lang/String;III)Ljava/sql/PreparedStatement;
            areturn
        end local 4 // int i2
        end local 3 // int i1
        end local 2 // int i
        end local 1 // java.lang.String s
        end local 0 // org.skife.jdbi.v2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/skife/jdbi/v2/DelegatingConnection;
            0    1     1     s  Ljava/lang/String;
            0    1     2     i  I
            0    1     3    i1  I
            0    1     4    i2  I
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
      Name  Flags
      s     
      i     
      i1    
      i2    

  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=5, locals=5, args_size=5
        start local 0 // org.skife.jdbi.v2.DelegatingConnection this
        start local 1 // java.lang.String s
        start local 2 // int i
        start local 3 // int i1
        start local 4 // int i2
         0: .line 244
            aload 0 /* this */
            getfield org.skife.jdbi.v2.DelegatingConnection.connection:Ljava/sql/Connection;
            aload 1 /* s */
            iload 2 /* i */
            iload 3 /* i1 */
            iload 4 /* i2 */
            invokeinterface java.sql.Connection.prepareCall:(Ljava/lang/String;III)Ljava/sql/CallableStatement;
            areturn
        end local 4 // int i2
        end local 3 // int i1
        end local 2 // int i
        end local 1 // java.lang.String s
        end local 0 // org.skife.jdbi.v2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/skife/jdbi/v2/DelegatingConnection;
            0    1     1     s  Ljava/lang/String;
            0    1     2     i  I
            0    1     3    i1  I
            0    1     4    i2  I
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
      Name  Flags
      s     
      i     
      i1    
      i2    

  public java.sql.PreparedStatement prepareStatement(java.lang.String, int);
    descriptor: (Ljava/lang/String;I)Ljava/sql/PreparedStatement;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.skife.jdbi.v2.DelegatingConnection this
        start local 1 // java.lang.String s
        start local 2 // int i
         0: .line 250
            aload 0 /* this */
            getfield org.skife.jdbi.v2.DelegatingConnection.connection:Ljava/sql/Connection;
            aload 1 /* s */
            iload 2 /* i */
            invokeinterface java.sql.Connection.prepareStatement:(Ljava/lang/String;I)Ljava/sql/PreparedStatement;
            areturn
        end local 2 // int i
        end local 1 // java.lang.String s
        end local 0 // org.skife.jdbi.v2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/skife/jdbi/v2/DelegatingConnection;
            0    1     1     s  Ljava/lang/String;
            0    1     2     i  I
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
      Name  Flags
      s     
      i     

  public java.sql.PreparedStatement prepareStatement(java.lang.String, int[]);
    descriptor: (Ljava/lang/String;[I)Ljava/sql/PreparedStatement;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.skife.jdbi.v2.DelegatingConnection this
        start local 1 // java.lang.String s
        start local 2 // int[] ints
         0: .line 256
            aload 0 /* this */
            getfield org.skife.jdbi.v2.DelegatingConnection.connection:Ljava/sql/Connection;
            aload 1 /* s */
            aload 2 /* ints */
            invokeinterface java.sql.Connection.prepareStatement:(Ljava/lang/String;[I)Ljava/sql/PreparedStatement;
            areturn
        end local 2 // int[] ints
        end local 1 // java.lang.String s
        end local 0 // org.skife.jdbi.v2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/skife/jdbi/v2/DelegatingConnection;
            0    1     1     s  Ljava/lang/String;
            0    1     2  ints  [I
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
      Name  Flags
      s     
      ints  

  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=3, locals=3, args_size=3
        start local 0 // org.skife.jdbi.v2.DelegatingConnection this
        start local 1 // java.lang.String s
        start local 2 // java.lang.String[] strings
         0: .line 262
            aload 0 /* this */
            getfield org.skife.jdbi.v2.DelegatingConnection.connection:Ljava/sql/Connection;
            aload 1 /* s */
            aload 2 /* strings */
            invokeinterface java.sql.Connection.prepareStatement:(Ljava/lang/String;[Ljava/lang/String;)Ljava/sql/PreparedStatement;
            areturn
        end local 2 // java.lang.String[] strings
        end local 1 // java.lang.String s
        end local 0 // org.skife.jdbi.v2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lorg/skife/jdbi/v2/DelegatingConnection;
            0    1     1        s  Ljava/lang/String;
            0    1     2  strings  [Ljava/lang/String;
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
         Name  Flags
      s        
      strings  

  public java.sql.Clob createClob();
    descriptor: ()Ljava/sql/Clob;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.skife.jdbi.v2.DelegatingConnection this
         0: .line 268
            aload 0 /* this */
            getfield org.skife.jdbi.v2.DelegatingConnection.connection:Ljava/sql/Connection;
            invokeinterface java.sql.Connection.createClob:()Ljava/sql/Clob;
            areturn
        end local 0 // org.skife.jdbi.v2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/skife/jdbi/v2/DelegatingConnection;
    Exceptions:
      throws java.sql.SQLException

  public java.sql.Blob createBlob();
    descriptor: ()Ljava/sql/Blob;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.skife.jdbi.v2.DelegatingConnection this
         0: .line 274
            aload 0 /* this */
            getfield org.skife.jdbi.v2.DelegatingConnection.connection:Ljava/sql/Connection;
            invokeinterface java.sql.Connection.createBlob:()Ljava/sql/Blob;
            areturn
        end local 0 // org.skife.jdbi.v2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/skife/jdbi/v2/DelegatingConnection;
    Exceptions:
      throws java.sql.SQLException

  public java.sql.NClob createNClob();
    descriptor: ()Ljava/sql/NClob;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.skife.jdbi.v2.DelegatingConnection this
         0: .line 280
            aload 0 /* this */
            getfield org.skife.jdbi.v2.DelegatingConnection.connection:Ljava/sql/Connection;
            invokeinterface java.sql.Connection.createNClob:()Ljava/sql/NClob;
            areturn
        end local 0 // org.skife.jdbi.v2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/skife/jdbi/v2/DelegatingConnection;
    Exceptions:
      throws java.sql.SQLException

  public java.sql.SQLXML createSQLXML();
    descriptor: ()Ljava/sql/SQLXML;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.skife.jdbi.v2.DelegatingConnection this
         0: .line 286
            aload 0 /* this */
            getfield org.skife.jdbi.v2.DelegatingConnection.connection:Ljava/sql/Connection;
            invokeinterface java.sql.Connection.createSQLXML:()Ljava/sql/SQLXML;
            areturn
        end local 0 // org.skife.jdbi.v2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/skife/jdbi/v2/DelegatingConnection;
    Exceptions:
      throws java.sql.SQLException

  public boolean isValid(int);
    descriptor: (I)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.skife.jdbi.v2.DelegatingConnection this
        start local 1 // int timeout
         0: .line 292
            aload 0 /* this */
            getfield org.skife.jdbi.v2.DelegatingConnection.connection:Ljava/sql/Connection;
            iload 1 /* timeout */
            invokeinterface java.sql.Connection.isValid:(I)Z
            ireturn
        end local 1 // int timeout
        end local 0 // org.skife.jdbi.v2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lorg/skife/jdbi/v2/DelegatingConnection;
            0    1     1  timeout  I
    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=3, locals=3, args_size=3
        start local 0 // org.skife.jdbi.v2.DelegatingConnection this
        start local 1 // java.lang.String name
        start local 2 // java.lang.String value
         0: .line 298
            aload 0 /* this */
            getfield org.skife.jdbi.v2.DelegatingConnection.connection:Ljava/sql/Connection;
            aload 1 /* name */
            aload 2 /* value */
            invokeinterface java.sql.Connection.setClientInfo:(Ljava/lang/String;Ljava/lang/String;)V
         1: .line 299
            return
        end local 2 // java.lang.String value
        end local 1 // java.lang.String name
        end local 0 // org.skife.jdbi.v2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lorg/skife/jdbi/v2/DelegatingConnection;
            0    2     1   name  Ljava/lang/String;
            0    2     2  value  Ljava/lang/String;
    Exceptions:
      throws java.sql.SQLClientInfoException
    MethodParameters:
       Name  Flags
      name   
      value  

  public java.lang.String getClientInfo(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.skife.jdbi.v2.DelegatingConnection this
        start local 1 // java.lang.String name
         0: .line 304
            aload 0 /* this */
            getfield org.skife.jdbi.v2.DelegatingConnection.connection:Ljava/sql/Connection;
            aload 1 /* name */
            invokeinterface java.sql.Connection.getClientInfo:(Ljava/lang/String;)Ljava/lang/String;
            areturn
        end local 1 // java.lang.String name
        end local 0 // org.skife.jdbi.v2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/skife/jdbi/v2/DelegatingConnection;
            0    1     1  name  Ljava/lang/String;
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
      Name  Flags
      name  

  public java.util.Properties getClientInfo();
    descriptor: ()Ljava/util/Properties;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.skife.jdbi.v2.DelegatingConnection this
         0: .line 310
            aload 0 /* this */
            getfield org.skife.jdbi.v2.DelegatingConnection.connection:Ljava/sql/Connection;
            invokeinterface java.sql.Connection.getClientInfo:()Ljava/util/Properties;
            areturn
        end local 0 // org.skife.jdbi.v2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/skife/jdbi/v2/DelegatingConnection;
    Exceptions:
      throws java.sql.SQLException

  public void setClientInfo(java.util.Properties);
    descriptor: (Ljava/util/Properties;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.skife.jdbi.v2.DelegatingConnection this
        start local 1 // java.util.Properties properties
         0: .line 316
            aload 0 /* this */
            getfield org.skife.jdbi.v2.DelegatingConnection.connection:Ljava/sql/Connection;
            aload 1 /* properties */
            invokeinterface java.sql.Connection.setClientInfo:(Ljava/util/Properties;)V
         1: .line 317
            return
        end local 1 // java.util.Properties properties
        end local 0 // org.skife.jdbi.v2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lorg/skife/jdbi/v2/DelegatingConnection;
            0    2     1  properties  Ljava/util/Properties;
    Exceptions:
      throws java.sql.SQLClientInfoException
    MethodParameters:
            Name  Flags
      properties  

  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=3, args_size=3
        start local 0 // org.skife.jdbi.v2.DelegatingConnection this
        start local 1 // java.lang.String typeName
        start local 2 // java.lang.Object[] elements
         0: .line 322
            aload 0 /* this */
            getfield org.skife.jdbi.v2.DelegatingConnection.connection:Ljava/sql/Connection;
            aload 1 /* typeName */
            aload 2 /* elements */
            invokeinterface java.sql.Connection.createArrayOf:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/sql/Array;
            areturn
        end local 2 // java.lang.Object[] elements
        end local 1 // java.lang.String typeName
        end local 0 // org.skife.jdbi.v2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/skife/jdbi/v2/DelegatingConnection;
            0    1     1  typeName  Ljava/lang/String;
            0    1     2  elements  [Ljava/lang/Object;
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
          Name  Flags
      typeName  
      elements  

  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=3, args_size=3
        start local 0 // org.skife.jdbi.v2.DelegatingConnection this
        start local 1 // java.lang.String typeName
        start local 2 // java.lang.Object[] attributes
         0: .line 328
            aload 0 /* this */
            getfield org.skife.jdbi.v2.DelegatingConnection.connection:Ljava/sql/Connection;
            aload 1 /* typeName */
            aload 2 /* attributes */
            invokeinterface java.sql.Connection.createStruct:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/sql/Struct;
            areturn
        end local 2 // java.lang.Object[] attributes
        end local 1 // java.lang.String typeName
        end local 0 // org.skife.jdbi.v2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        this  Lorg/skife/jdbi/v2/DelegatingConnection;
            0    1     1    typeName  Ljava/lang/String;
            0    1     2  attributes  [Ljava/lang/Object;
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
            Name  Flags
      typeName    
      attributes  

  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.skife.jdbi.v2.DelegatingConnection this
        start local 1 // java.lang.Class iface
         0: .line 334
            aload 0 /* this */
            getfield org.skife.jdbi.v2.DelegatingConnection.connection:Ljava/sql/Connection;
            aload 1 /* iface */
            invokeinterface java.sql.Connection.unwrap:(Ljava/lang/Class;)Ljava/lang/Object;
            areturn
        end local 1 // java.lang.Class iface
        end local 0 // org.skife.jdbi.v2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/skife/jdbi/v2/DelegatingConnection;
            0    1     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 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.skife.jdbi.v2.DelegatingConnection this
        start local 1 // java.lang.Class iface
         0: .line 340
            aload 0 /* this */
            getfield org.skife.jdbi.v2.DelegatingConnection.connection:Ljava/sql/Connection;
            aload 1 /* iface */
            invokeinterface java.sql.Connection.isWrapperFor:(Ljava/lang/Class;)Z
            ireturn
        end local 1 // java.lang.Class iface
        end local 0 // org.skife.jdbi.v2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/skife/jdbi/v2/DelegatingConnection;
            0    1     1  iface  Ljava/lang/Class<*>;
    Exceptions:
      throws java.sql.SQLException
    Signature: (Ljava/lang/Class<*>;)Z
    MethodParameters:
       Name  Flags
      iface  

  public java.lang.String getSchema();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.skife.jdbi.v2.DelegatingConnection this
         0: .line 346
            aload 0 /* this */
            getfield org.skife.jdbi.v2.DelegatingConnection.connection:Ljava/sql/Connection;
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            ldc "getSchema"
            iconst_0
            anewarray java.lang.Class
            invokevirtual java.lang.Class.getDeclaredMethod:(Ljava/lang/String;[Ljava/lang/Class;)Ljava/lang/reflect/Method;
            astore 1 /* m */
        start local 1 // java.lang.reflect.Method m
         1: .line 347
            aload 1 /* m */
            aload 0 /* this */
            getfield org.skife.jdbi.v2.DelegatingConnection.connection:Ljava/sql/Connection;
            iconst_0
            anewarray java.lang.Object
            invokevirtual java.lang.reflect.Method.invoke:(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.lang.String
         2: areturn
        end local 1 // java.lang.reflect.Method m
         3: .line 349
      StackMap locals:
      StackMap stack: java.lang.NoSuchMethodException
            pop
         4: .line 350
            new java.lang.IllegalStateException
            dup
            ldc "getSchema does not exist in this Java version"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 352
      StackMap locals:
      StackMap stack: java.lang.reflect.InvocationTargetException
            astore 1 /* e */
        start local 1 // java.lang.reflect.InvocationTargetException e
         6: .line 353
            aload 1 /* e */
            invokevirtual java.lang.reflect.InvocationTargetException.getCause:()Ljava/lang/Throwable;
            instanceof java.sql.SQLException
            ifeq 8
         7: .line 354
            aload 1 /* e */
            invokevirtual java.lang.reflect.InvocationTargetException.getCause:()Ljava/lang/Throwable;
            checkcast java.sql.SQLException
            athrow
         8: .line 357
      StackMap locals: java.lang.reflect.InvocationTargetException
      StackMap stack:
            new java.lang.IllegalStateException
            dup
            aload 1 /* e */
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 1 // java.lang.reflect.InvocationTargetException e
         9: .line 360
      StackMap locals: org.skife.jdbi.v2.DelegatingConnection
      StackMap stack: java.lang.IllegalAccessException
            astore 1 /* e */
        start local 1 // java.lang.IllegalAccessException e
        10: .line 361
            new java.lang.RuntimeException
            dup
            aload 1 /* e */
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 1 // java.lang.IllegalAccessException e
        end local 0 // org.skife.jdbi.v2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Lorg/skife/jdbi/v2/DelegatingConnection;
            1    3     1     m  Ljava/lang/reflect/Method;
            6    9     1     e  Ljava/lang/reflect/InvocationTargetException;
           10   11     1     e  Ljava/lang/IllegalAccessException;
      Exception table:
        from    to  target  type
           0     2       3  Class java.lang.NoSuchMethodException
           0     2       5  Class java.lang.reflect.InvocationTargetException
           0     2       9  Class java.lang.IllegalAccessException
    Exceptions:
      throws java.sql.SQLException

  public void setSchema(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=3, args_size=2
        start local 0 // org.skife.jdbi.v2.DelegatingConnection this
        start local 1 // java.lang.String schema
         0: .line 368
            aload 0 /* this */
            getfield org.skife.jdbi.v2.DelegatingConnection.connection:Ljava/sql/Connection;
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            ldc "setSchema"
            iconst_1
            anewarray java.lang.Class
            dup
            iconst_0
            ldc Ljava/lang/String;
            aastore
            invokevirtual java.lang.Class.getDeclaredMethod:(Ljava/lang/String;[Ljava/lang/Class;)Ljava/lang/reflect/Method;
            astore 2 /* m */
        start local 2 // java.lang.reflect.Method m
         1: .line 369
            aload 2 /* m */
            aload 0 /* this */
            getfield org.skife.jdbi.v2.DelegatingConnection.connection:Ljava/sql/Connection;
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 1 /* schema */
            aastore
            invokevirtual java.lang.reflect.Method.invoke:(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;
            pop
        end local 2 // java.lang.reflect.Method m
         2: .line 370
            goto 11
         3: .line 371
      StackMap locals:
      StackMap stack: java.lang.NoSuchMethodException
            pop
         4: .line 372
            new java.lang.IllegalStateException
            dup
            ldc "setSchema does not exist in this Java version"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 374
      StackMap locals:
      StackMap stack: java.lang.reflect.InvocationTargetException
            astore 2 /* e */
        start local 2 // java.lang.reflect.InvocationTargetException e
         6: .line 375
            aload 2 /* e */
            invokevirtual java.lang.reflect.InvocationTargetException.getCause:()Ljava/lang/Throwable;
            instanceof java.sql.SQLException
            ifeq 8
         7: .line 376
            aload 2 /* e */
            invokevirtual java.lang.reflect.InvocationTargetException.getCause:()Ljava/lang/Throwable;
            checkcast java.sql.SQLException
            athrow
         8: .line 379
      StackMap locals: java.lang.reflect.InvocationTargetException
      StackMap stack:
            new java.lang.IllegalStateException
            dup
            aload 2 /* e */
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 2 // java.lang.reflect.InvocationTargetException e
         9: .line 382
      StackMap locals: org.skife.jdbi.v2.DelegatingConnection java.lang.String
      StackMap stack: java.lang.IllegalAccessException
            astore 2 /* e */
        start local 2 // java.lang.IllegalAccessException e
        10: .line 383
            new java.lang.RuntimeException
            dup
            aload 2 /* e */
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 2 // java.lang.IllegalAccessException e
        11: .line 385
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.lang.String schema
        end local 0 // org.skife.jdbi.v2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   12     0    this  Lorg/skife/jdbi/v2/DelegatingConnection;
            0   12     1  schema  Ljava/lang/String;
            1    2     2       m  Ljava/lang/reflect/Method;
            6    9     2       e  Ljava/lang/reflect/InvocationTargetException;
           10   11     2       e  Ljava/lang/IllegalAccessException;
      Exception table:
        from    to  target  type
           0     2       3  Class java.lang.NoSuchMethodException
           0     2       5  Class java.lang.reflect.InvocationTargetException
           0     2       9  Class java.lang.IllegalAccessException
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
        Name  Flags
      schema  

  public void abort(java.util.concurrent.Executor);
    descriptor: (Ljava/util/concurrent/Executor;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=3, args_size=2
        start local 0 // org.skife.jdbi.v2.DelegatingConnection this
        start local 1 // java.util.concurrent.Executor executor
         0: .line 390
            aload 0 /* this */
            getfield org.skife.jdbi.v2.DelegatingConnection.connection:Ljava/sql/Connection;
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            ldc "abort"
            iconst_0
            anewarray java.lang.Class
            invokevirtual java.lang.Class.getDeclaredMethod:(Ljava/lang/String;[Ljava/lang/Class;)Ljava/lang/reflect/Method;
            astore 2 /* m */
        start local 2 // java.lang.reflect.Method m
         1: .line 391
            aload 2 /* m */
            aload 0 /* this */
            getfield org.skife.jdbi.v2.DelegatingConnection.connection:Ljava/sql/Connection;
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 1 /* executor */
            aastore
            invokevirtual java.lang.reflect.Method.invoke:(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;
            pop
        end local 2 // java.lang.reflect.Method m
         2: .line 392
            goto 11
         3: .line 393
      StackMap locals:
      StackMap stack: java.lang.NoSuchMethodException
            pop
         4: .line 394
            new java.lang.IllegalStateException
            dup
            ldc "abort does not exist in this Java version"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 396
      StackMap locals:
      StackMap stack: java.lang.reflect.InvocationTargetException
            astore 2 /* e */
        start local 2 // java.lang.reflect.InvocationTargetException e
         6: .line 397
            aload 2 /* e */
            invokevirtual java.lang.reflect.InvocationTargetException.getCause:()Ljava/lang/Throwable;
            instanceof java.sql.SQLException
            ifeq 8
         7: .line 398
            aload 2 /* e */
            invokevirtual java.lang.reflect.InvocationTargetException.getCause:()Ljava/lang/Throwable;
            checkcast java.sql.SQLException
            athrow
         8: .line 401
      StackMap locals: java.lang.reflect.InvocationTargetException
      StackMap stack:
            new java.lang.IllegalStateException
            dup
            aload 2 /* e */
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 2 // java.lang.reflect.InvocationTargetException e
         9: .line 404
      StackMap locals: org.skife.jdbi.v2.DelegatingConnection java.util.concurrent.Executor
      StackMap stack: java.lang.IllegalAccessException
            astore 2 /* e */
        start local 2 // java.lang.IllegalAccessException e
        10: .line 405
            new java.lang.RuntimeException
            dup
            aload 2 /* e */
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 2 // java.lang.IllegalAccessException e
        11: .line 407
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.util.concurrent.Executor executor
        end local 0 // org.skife.jdbi.v2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   12     0      this  Lorg/skife/jdbi/v2/DelegatingConnection;
            0   12     1  executor  Ljava/util/concurrent/Executor;
            1    2     2         m  Ljava/lang/reflect/Method;
            6    9     2         e  Ljava/lang/reflect/InvocationTargetException;
           10   11     2         e  Ljava/lang/IllegalAccessException;
      Exception table:
        from    to  target  type
           0     2       3  Class java.lang.NoSuchMethodException
           0     2       5  Class java.lang.reflect.InvocationTargetException
           0     2       9  Class java.lang.IllegalAccessException
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
          Name  Flags
      executor  

  public void setNetworkTimeout(java.util.concurrent.Executor, int);
    descriptor: (Ljava/util/concurrent/Executor;I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=4, args_size=3
        start local 0 // org.skife.jdbi.v2.DelegatingConnection this
        start local 1 // java.util.concurrent.Executor executor
        start local 2 // int milliseconds
         0: .line 412
            aload 0 /* this */
            getfield org.skife.jdbi.v2.DelegatingConnection.connection:Ljava/sql/Connection;
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            ldc "setNetworkTimeout"
            iconst_0
            anewarray java.lang.Class
            invokevirtual java.lang.Class.getDeclaredMethod:(Ljava/lang/String;[Ljava/lang/Class;)Ljava/lang/reflect/Method;
            astore 3 /* m */
        start local 3 // java.lang.reflect.Method m
         1: .line 413
            aload 3 /* m */
            aload 0 /* this */
            getfield org.skife.jdbi.v2.DelegatingConnection.connection:Ljava/sql/Connection;
            iconst_2
            anewarray java.lang.Object
            dup
            iconst_0
            aload 1 /* executor */
            aastore
            dup
            iconst_1
            iload 2 /* milliseconds */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            invokevirtual java.lang.reflect.Method.invoke:(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;
            pop
        end local 3 // java.lang.reflect.Method m
         2: .line 414
            goto 11
         3: .line 415
      StackMap locals:
      StackMap stack: java.lang.NoSuchMethodException
            pop
         4: .line 416
            new java.lang.IllegalStateException
            dup
            ldc "setNetworkTimeout does not exist in this Java version"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 418
      StackMap locals:
      StackMap stack: java.lang.reflect.InvocationTargetException
            astore 3 /* e */
        start local 3 // java.lang.reflect.InvocationTargetException e
         6: .line 419
            aload 3 /* e */
            invokevirtual java.lang.reflect.InvocationTargetException.getCause:()Ljava/lang/Throwable;
            instanceof java.sql.SQLException
            ifeq 8
         7: .line 420
            aload 3 /* e */
            invokevirtual java.lang.reflect.InvocationTargetException.getCause:()Ljava/lang/Throwable;
            checkcast java.sql.SQLException
            athrow
         8: .line 423
      StackMap locals: java.lang.reflect.InvocationTargetException
      StackMap stack:
            new java.lang.IllegalStateException
            dup
            aload 3 /* e */
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 3 // java.lang.reflect.InvocationTargetException e
         9: .line 426
      StackMap locals: org.skife.jdbi.v2.DelegatingConnection java.util.concurrent.Executor int
      StackMap stack: java.lang.IllegalAccessException
            astore 3 /* e */
        start local 3 // java.lang.IllegalAccessException e
        10: .line 427
            new java.lang.RuntimeException
            dup
            aload 3 /* e */
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 3 // java.lang.IllegalAccessException e
        11: .line 429
      StackMap locals:
      StackMap stack:
            return
        end local 2 // int milliseconds
        end local 1 // java.util.concurrent.Executor executor
        end local 0 // org.skife.jdbi.v2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   12     0          this  Lorg/skife/jdbi/v2/DelegatingConnection;
            0   12     1      executor  Ljava/util/concurrent/Executor;
            0   12     2  milliseconds  I
            1    2     3             m  Ljava/lang/reflect/Method;
            6    9     3             e  Ljava/lang/reflect/InvocationTargetException;
           10   11     3             e  Ljava/lang/IllegalAccessException;
      Exception table:
        from    to  target  type
           0     2       3  Class java.lang.NoSuchMethodException
           0     2       5  Class java.lang.reflect.InvocationTargetException
           0     2       9  Class java.lang.IllegalAccessException
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
              Name  Flags
      executor      
      milliseconds  

  public int getNetworkTimeout();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.skife.jdbi.v2.DelegatingConnection this
         0: .line 434
            aload 0 /* this */
            getfield org.skife.jdbi.v2.DelegatingConnection.connection:Ljava/sql/Connection;
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            ldc "getNetworkTimeout"
            iconst_0
            anewarray java.lang.Class
            invokevirtual java.lang.Class.getDeclaredMethod:(Ljava/lang/String;[Ljava/lang/Class;)Ljava/lang/reflect/Method;
            astore 1 /* m */
        start local 1 // java.lang.reflect.Method m
         1: .line 435
            aload 1 /* m */
            aload 0 /* this */
            getfield org.skife.jdbi.v2.DelegatingConnection.connection:Ljava/sql/Connection;
            iconst_0
            anewarray java.lang.Object
            invokevirtual java.lang.reflect.Method.invoke:(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.lang.Integer
            invokevirtual java.lang.Integer.intValue:()I
         2: ireturn
        end local 1 // java.lang.reflect.Method m
         3: .line 437
      StackMap locals:
      StackMap stack: java.lang.NoSuchMethodException
            pop
         4: .line 438
            new java.lang.IllegalStateException
            dup
            ldc "getNetworkTimeout does not exist in this Java version"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 440
      StackMap locals:
      StackMap stack: java.lang.reflect.InvocationTargetException
            astore 1 /* e */
        start local 1 // java.lang.reflect.InvocationTargetException e
         6: .line 441
            aload 1 /* e */
            invokevirtual java.lang.reflect.InvocationTargetException.getCause:()Ljava/lang/Throwable;
            instanceof java.sql.SQLException
            ifeq 8
         7: .line 442
            aload 1 /* e */
            invokevirtual java.lang.reflect.InvocationTargetException.getCause:()Ljava/lang/Throwable;
            checkcast java.sql.SQLException
            athrow
         8: .line 445
      StackMap locals: java.lang.reflect.InvocationTargetException
      StackMap stack:
            new java.lang.IllegalStateException
            dup
            aload 1 /* e */
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 1 // java.lang.reflect.InvocationTargetException e
         9: .line 448
      StackMap locals: org.skife.jdbi.v2.DelegatingConnection
      StackMap stack: java.lang.IllegalAccessException
            astore 1 /* e */
        start local 1 // java.lang.IllegalAccessException e
        10: .line 449
            new java.lang.RuntimeException
            dup
            aload 1 /* e */
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 1 // java.lang.IllegalAccessException e
        end local 0 // org.skife.jdbi.v2.DelegatingConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Lorg/skife/jdbi/v2/DelegatingConnection;
            1    3     1     m  Ljava/lang/reflect/Method;
            6    9     1     e  Ljava/lang/reflect/InvocationTargetException;
           10   11     1     e  Ljava/lang/IllegalAccessException;
      Exception table:
        from    to  target  type
           0     2       3  Class java.lang.NoSuchMethodException
           0     2       5  Class java.lang.reflect.InvocationTargetException
           0     2       9  Class java.lang.IllegalAccessException
    Exceptions:
      throws java.sql.SQLException
}
SourceFile: "DelegatingConnection.java"