public class org.h2.jdbc.JdbcConnection extends org.h2.message.TraceObject implements java.sql.Connection, org.h2.jdbc.JdbcConnectionBackwardsCompat
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.h2.jdbc.JdbcConnection
  super_class: org.h2.message.TraceObject
{
  private static final java.lang.String NUM_SERVERS;
    descriptor: Ljava/lang/String;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: "numServers"

  private static final java.lang.String PREFIX_SERVER;
    descriptor: Ljava/lang/String;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: "server"

  private static boolean keepOpenStackTrace;
    descriptor: Z
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC

  private final java.lang.String url;
    descriptor: Ljava/lang/String;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.lang.String user;
    descriptor: Ljava/lang/String;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private int holdability;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private org.h2.engine.SessionInterface session;
    descriptor: Lorg/h2/engine/SessionInterface;
    flags: (0x0002) ACC_PRIVATE

  private org.h2.command.CommandInterface commit;
    descriptor: Lorg/h2/command/CommandInterface;
    flags: (0x0002) ACC_PRIVATE

  private org.h2.command.CommandInterface rollback;
    descriptor: Lorg/h2/command/CommandInterface;
    flags: (0x0002) ACC_PRIVATE

  private org.h2.command.CommandInterface getReadOnly;
    descriptor: Lorg/h2/command/CommandInterface;
    flags: (0x0002) ACC_PRIVATE

  private org.h2.command.CommandInterface getGeneratedKeys;
    descriptor: Lorg/h2/command/CommandInterface;
    flags: (0x0002) ACC_PRIVATE

  private org.h2.command.CommandInterface setLockMode;
    descriptor: Lorg/h2/command/CommandInterface;
    flags: (0x0002) ACC_PRIVATE

  private org.h2.command.CommandInterface getLockMode;
    descriptor: Lorg/h2/command/CommandInterface;
    flags: (0x0002) ACC_PRIVATE

  private org.h2.command.CommandInterface setQueryTimeout;
    descriptor: Lorg/h2/command/CommandInterface;
    flags: (0x0002) ACC_PRIVATE

  private org.h2.command.CommandInterface getQueryTimeout;
    descriptor: Lorg/h2/command/CommandInterface;
    flags: (0x0002) ACC_PRIVATE

  private int savepointId;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private java.lang.String catalog;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE

  private java.sql.Statement executingStatement;
    descriptor: Ljava/sql/Statement;
    flags: (0x0002) ACC_PRIVATE

  private final org.h2.util.CloseWatcher watcher;
    descriptor: Lorg/h2/util/CloseWatcher;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private int queryTimeoutCache;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private java.util.Map<java.lang.String, java.lang.String> clientInfo;
    descriptor: Ljava/util/Map;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljava/util/Map<Ljava/lang/String;Ljava/lang/String;>;

  private volatile org.h2.jdbc.JdbcConnection$Settings settings;
    descriptor: Lorg/h2/jdbc/JdbcConnection$Settings;
    flags: (0x0042) ACC_PRIVATE, ACC_VOLATILE

  private final boolean scopeGeneratedKeys;
    descriptor: Z
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>(java.lang.String, java.util.Properties);
    descriptor: (Ljava/lang/String;Ljava/util/Properties;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // org.h2.jdbc.JdbcConnection this
        start local 1 // java.lang.String url
        start local 2 // java.util.Properties info
         0: .line 148
            aload 0 /* this */
            new org.h2.engine.ConnectionInfo
            dup
            aload 1 /* url */
            aload 2 /* info */
            invokespecial org.h2.engine.ConnectionInfo.<init>:(Ljava/lang/String;Ljava/util/Properties;)V
            iconst_1
            invokespecial org.h2.jdbc.JdbcConnection.<init>:(Lorg/h2/engine/ConnectionInfo;Z)V
         1: .line 149
            return
        end local 2 // java.util.Properties info
        end local 1 // java.lang.String url
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/h2/jdbc/JdbcConnection;
            0    2     1   url  Ljava/lang/String;
            0    2     2  info  Ljava/util/Properties;
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
      Name  Flags
      url   
      info  

  public void <init>(org.h2.engine.ConnectionInfo, boolean);
    descriptor: (Lorg/h2/engine/ConnectionInfo;Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // org.h2.jdbc.JdbcConnection this
        start local 1 // org.h2.engine.ConnectionInfo ci
        start local 2 // boolean useBaseDir
         0: .line 159
            aload 0 /* this */
            invokespecial org.h2.message.TraceObject.<init>:()V
         1: .line 126
            aload 0 /* this */
            iconst_1
            putfield org.h2.jdbc.JdbcConnection.holdability:I
         2: .line 138
            aload 0 /* this */
            iconst_m1
            putfield org.h2.jdbc.JdbcConnection.queryTimeoutCache:I
         3: .line 162
            iload 2 /* useBaseDir */
            ifeq 7
         4: .line 163
            invokestatic org.h2.engine.SysProperties.getBaseDir:()Ljava/lang/String;
            astore 3 /* baseDir */
        start local 3 // java.lang.String baseDir
         5: .line 164
            aload 3 /* baseDir */
            ifnull 7
         6: .line 165
            aload 1 /* ci */
            aload 3 /* baseDir */
            invokevirtual org.h2.engine.ConnectionInfo.setBaseDir:(Ljava/lang/String;)V
        end local 3 // java.lang.String baseDir
         7: .line 169
      StackMap locals: org.h2.jdbc.JdbcConnection org.h2.engine.ConnectionInfo int
      StackMap stack:
            aload 0 /* this */
            new org.h2.engine.SessionRemote
            dup
            aload 1 /* ci */
            invokespecial org.h2.engine.SessionRemote.<init>:(Lorg/h2/engine/ConnectionInfo;)V
            iconst_0
            invokevirtual org.h2.engine.SessionRemote.connectEmbeddedOrServer:(Z)Lorg/h2/engine/SessionInterface;
            putfield org.h2.jdbc.JdbcConnection.session:Lorg/h2/engine/SessionInterface;
         8: .line 170
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.session:Lorg/h2/engine/SessionInterface;
            invokeinterface org.h2.engine.SessionInterface.getTrace:()Lorg/h2/message/Trace;
            putfield org.h2.jdbc.JdbcConnection.trace:Lorg/h2/message/Trace;
         9: .line 171
            iconst_1
            invokestatic org.h2.jdbc.JdbcConnection.getNextId:(I)I
            istore 3 /* id */
        start local 3 // int id
        10: .line 172
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.trace:Lorg/h2/message/Trace;
            iconst_1
            iload 3 /* id */
            invokevirtual org.h2.jdbc.JdbcConnection.setTrace:(Lorg/h2/message/Trace;II)V
        11: .line 173
            aload 0 /* this */
            aload 1 /* ci */
            invokevirtual org.h2.engine.ConnectionInfo.getUserName:()Ljava/lang/String;
            putfield org.h2.jdbc.JdbcConnection.user:Ljava/lang/String;
        12: .line 174
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.isInfoEnabled:()Z
            ifeq 18
        13: .line 175
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.trace:Lorg/h2/message/Trace;
            new java.lang.StringBuilder
            dup
            ldc "Connection "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.getTraceObjectName:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
        14: .line 176
            ldc " = DriverManager.getConnection("
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
        15: .line 177
            aload 1 /* ci */
            invokevirtual org.h2.engine.ConnectionInfo.getOriginalURL:()Ljava/lang/String;
            invokestatic org.h2.jdbc.JdbcConnection.quote:(Ljava/lang/String;)Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc ", "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.user:Ljava/lang/String;
            invokestatic org.h2.jdbc.JdbcConnection.quote:(Ljava/lang/String;)Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
        16: .line 178
            ldc ", \"\");"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        17: .line 175
            invokevirtual org.h2.message.Trace.infoCode:(Ljava/lang/String;)V
        18: .line 180
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            aload 1 /* ci */
            invokevirtual org.h2.engine.ConnectionInfo.getURL:()Ljava/lang/String;
            putfield org.h2.jdbc.JdbcConnection.url:Ljava/lang/String;
        19: .line 181
            aload 0 /* this */
            aload 1 /* ci */
            ldc "SCOPE_GENERATED_KEYS"
            iconst_0
            invokevirtual org.h2.engine.ConnectionInfo.getProperty:(Ljava/lang/String;Z)Z
            putfield org.h2.jdbc.JdbcConnection.scopeGeneratedKeys:Z
        20: .line 182
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.closeOld:()V
        21: .line 183
            aload 0 /* this */
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.session:Lorg/h2/engine/SessionInterface;
            getstatic org.h2.jdbc.JdbcConnection.keepOpenStackTrace:Z
            invokestatic org.h2.util.CloseWatcher.register:(Ljava/lang/Object;Ljava/io/Closeable;Z)Lorg/h2/util/CloseWatcher;
            putfield org.h2.jdbc.JdbcConnection.watcher:Lorg/h2/util/CloseWatcher;
        end local 3 // int id
        22: .line 184
            goto 25
      StackMap locals: org.h2.jdbc.JdbcConnection org.h2.engine.ConnectionInfo int
      StackMap stack: java.lang.Exception
        23: astore 3 /* e */
        start local 3 // java.lang.Exception e
        24: .line 185
            aload 0 /* this */
            aload 3 /* e */
            invokevirtual org.h2.jdbc.JdbcConnection.logAndConvert:(Ljava/lang/Throwable;)Ljava/sql/SQLException;
            athrow
        end local 3 // java.lang.Exception e
        25: .line 187
      StackMap locals:
      StackMap stack:
            return
        end local 2 // boolean useBaseDir
        end local 1 // org.h2.engine.ConnectionInfo ci
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   26     0        this  Lorg/h2/jdbc/JdbcConnection;
            0   26     1          ci  Lorg/h2/engine/ConnectionInfo;
            0   26     2  useBaseDir  Z
            5    7     3     baseDir  Ljava/lang/String;
           10   22     3          id  I
           24   25     3           e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           3    22      23  Class java.lang.Exception
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
            Name  Flags
      ci          
      useBaseDir  

  public void <init>(org.h2.jdbc.JdbcConnection);
    descriptor: (Lorg/h2/jdbc/JdbcConnection;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // org.h2.jdbc.JdbcConnection this
        start local 1 // org.h2.jdbc.JdbcConnection clone
         0: .line 192
            aload 0 /* this */
            invokespecial org.h2.message.TraceObject.<init>:()V
         1: .line 126
            aload 0 /* this */
            iconst_1
            putfield org.h2.jdbc.JdbcConnection.holdability:I
         2: .line 138
            aload 0 /* this */
            iconst_m1
            putfield org.h2.jdbc.JdbcConnection.queryTimeoutCache:I
         3: .line 193
            aload 0 /* this */
            aload 1 /* clone */
            getfield org.h2.jdbc.JdbcConnection.session:Lorg/h2/engine/SessionInterface;
            putfield org.h2.jdbc.JdbcConnection.session:Lorg/h2/engine/SessionInterface;
         4: .line 194
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.session:Lorg/h2/engine/SessionInterface;
            invokeinterface org.h2.engine.SessionInterface.getTrace:()Lorg/h2/message/Trace;
            putfield org.h2.jdbc.JdbcConnection.trace:Lorg/h2/message/Trace;
         5: .line 195
            iconst_1
            invokestatic org.h2.jdbc.JdbcConnection.getNextId:(I)I
            istore 2 /* id */
        start local 2 // int id
         6: .line 196
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.trace:Lorg/h2/message/Trace;
            iconst_1
            iload 2 /* id */
            invokevirtual org.h2.jdbc.JdbcConnection.setTrace:(Lorg/h2/message/Trace;II)V
         7: .line 197
            aload 0 /* this */
            aload 1 /* clone */
            getfield org.h2.jdbc.JdbcConnection.user:Ljava/lang/String;
            putfield org.h2.jdbc.JdbcConnection.user:Ljava/lang/String;
         8: .line 198
            aload 0 /* this */
            aload 1 /* clone */
            getfield org.h2.jdbc.JdbcConnection.url:Ljava/lang/String;
            putfield org.h2.jdbc.JdbcConnection.url:Ljava/lang/String;
         9: .line 199
            aload 0 /* this */
            aload 1 /* clone */
            getfield org.h2.jdbc.JdbcConnection.catalog:Ljava/lang/String;
            putfield org.h2.jdbc.JdbcConnection.catalog:Ljava/lang/String;
        10: .line 200
            aload 0 /* this */
            aload 1 /* clone */
            getfield org.h2.jdbc.JdbcConnection.commit:Lorg/h2/command/CommandInterface;
            putfield org.h2.jdbc.JdbcConnection.commit:Lorg/h2/command/CommandInterface;
        11: .line 201
            aload 0 /* this */
            aload 1 /* clone */
            getfield org.h2.jdbc.JdbcConnection.getGeneratedKeys:Lorg/h2/command/CommandInterface;
            putfield org.h2.jdbc.JdbcConnection.getGeneratedKeys:Lorg/h2/command/CommandInterface;
        12: .line 202
            aload 0 /* this */
            aload 1 /* clone */
            getfield org.h2.jdbc.JdbcConnection.getLockMode:Lorg/h2/command/CommandInterface;
            putfield org.h2.jdbc.JdbcConnection.getLockMode:Lorg/h2/command/CommandInterface;
        13: .line 203
            aload 0 /* this */
            aload 1 /* clone */
            getfield org.h2.jdbc.JdbcConnection.getQueryTimeout:Lorg/h2/command/CommandInterface;
            putfield org.h2.jdbc.JdbcConnection.getQueryTimeout:Lorg/h2/command/CommandInterface;
        14: .line 204
            aload 0 /* this */
            aload 1 /* clone */
            getfield org.h2.jdbc.JdbcConnection.getReadOnly:Lorg/h2/command/CommandInterface;
            putfield org.h2.jdbc.JdbcConnection.getReadOnly:Lorg/h2/command/CommandInterface;
        15: .line 205
            aload 0 /* this */
            aload 1 /* clone */
            getfield org.h2.jdbc.JdbcConnection.rollback:Lorg/h2/command/CommandInterface;
            putfield org.h2.jdbc.JdbcConnection.rollback:Lorg/h2/command/CommandInterface;
        16: .line 206
            aload 0 /* this */
            aload 1 /* clone */
            getfield org.h2.jdbc.JdbcConnection.scopeGeneratedKeys:Z
            putfield org.h2.jdbc.JdbcConnection.scopeGeneratedKeys:Z
        17: .line 207
            aload 0 /* this */
            aconst_null
            putfield org.h2.jdbc.JdbcConnection.watcher:Lorg/h2/util/CloseWatcher;
        18: .line 208
            aload 1 /* clone */
            getfield org.h2.jdbc.JdbcConnection.clientInfo:Ljava/util/Map;
            ifnull 20
        19: .line 209
            aload 0 /* this */
            new java.util.HashMap
            dup
            aload 1 /* clone */
            getfield org.h2.jdbc.JdbcConnection.clientInfo:Ljava/util/Map;
            invokespecial java.util.HashMap.<init>:(Ljava/util/Map;)V
            putfield org.h2.jdbc.JdbcConnection.clientInfo:Ljava/util/Map;
        20: .line 211
      StackMap locals: org.h2.jdbc.JdbcConnection org.h2.jdbc.JdbcConnection int
      StackMap stack:
            return
        end local 2 // int id
        end local 1 // org.h2.jdbc.JdbcConnection clone
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   21     0   this  Lorg/h2/jdbc/JdbcConnection;
            0   21     1  clone  Lorg/h2/jdbc/JdbcConnection;
            6   21     2     id  I
    MethodParameters:
       Name  Flags
      clone  

  public void <init>(org.h2.engine.SessionInterface, java.lang.String, java.lang.String);
    descriptor: (Lorg/h2/engine/SessionInterface;Ljava/lang/String;Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=4
        start local 0 // org.h2.jdbc.JdbcConnection this
        start local 1 // org.h2.engine.SessionInterface session
        start local 2 // java.lang.String user
        start local 3 // java.lang.String url
         0: .line 216
            aload 0 /* this */
            invokespecial org.h2.message.TraceObject.<init>:()V
         1: .line 126
            aload 0 /* this */
            iconst_1
            putfield org.h2.jdbc.JdbcConnection.holdability:I
         2: .line 138
            aload 0 /* this */
            iconst_m1
            putfield org.h2.jdbc.JdbcConnection.queryTimeoutCache:I
         3: .line 217
            aload 0 /* this */
            aload 1 /* session */
            putfield org.h2.jdbc.JdbcConnection.session:Lorg/h2/engine/SessionInterface;
         4: .line 218
            aload 0 /* this */
            aload 1 /* session */
            invokeinterface org.h2.engine.SessionInterface.getTrace:()Lorg/h2/message/Trace;
            putfield org.h2.jdbc.JdbcConnection.trace:Lorg/h2/message/Trace;
         5: .line 219
            iconst_1
            invokestatic org.h2.jdbc.JdbcConnection.getNextId:(I)I
            istore 4 /* id */
        start local 4 // int id
         6: .line 220
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.trace:Lorg/h2/message/Trace;
            iconst_1
            iload 4 /* id */
            invokevirtual org.h2.jdbc.JdbcConnection.setTrace:(Lorg/h2/message/Trace;II)V
         7: .line 221
            aload 0 /* this */
            aload 2 /* user */
            putfield org.h2.jdbc.JdbcConnection.user:Ljava/lang/String;
         8: .line 222
            aload 0 /* this */
            aload 3 /* url */
            putfield org.h2.jdbc.JdbcConnection.url:Ljava/lang/String;
         9: .line 223
            aload 0 /* this */
            iconst_0
            putfield org.h2.jdbc.JdbcConnection.scopeGeneratedKeys:Z
        10: .line 224
            aload 0 /* this */
            aconst_null
            putfield org.h2.jdbc.JdbcConnection.watcher:Lorg/h2/util/CloseWatcher;
        11: .line 225
            return
        end local 4 // int id
        end local 3 // java.lang.String url
        end local 2 // java.lang.String user
        end local 1 // org.h2.engine.SessionInterface session
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   12     0     this  Lorg/h2/jdbc/JdbcConnection;
            0   12     1  session  Lorg/h2/engine/SessionInterface;
            0   12     2     user  Ljava/lang/String;
            0   12     3      url  Ljava/lang/String;
            6   12     4       id  I
    MethodParameters:
         Name  Flags
      session  
      user     
      url      

  private void closeOld();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=4, args_size=1
        start local 0 // org.h2.jdbc.JdbcConnection this
         0: .line 229
      StackMap locals:
      StackMap stack:
            invokestatic org.h2.util.CloseWatcher.pollUnclosed:()Lorg/h2/util/CloseWatcher;
            astore 1 /* w */
        start local 1 // org.h2.util.CloseWatcher w
         1: .line 230
            aload 1 /* w */
            ifnonnull 3
         2: .line 231
            goto 13
         3: .line 234
      StackMap locals: org.h2.util.CloseWatcher
      StackMap stack:
            aload 1 /* w */
            invokevirtual org.h2.util.CloseWatcher.getCloseable:()Ljava/io/Closeable;
            invokeinterface java.io.Closeable.close:()V
         4: .line 235
            goto 7
      StackMap locals:
      StackMap stack: java.lang.Exception
         5: astore 2 /* e */
        start local 2 // java.lang.Exception e
         6: .line 236
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.trace:Lorg/h2/message/Trace;
            aload 2 /* e */
            ldc "closing session"
            invokevirtual org.h2.message.Trace.error:(Ljava/lang/Throwable;Ljava/lang/String;)V
        end local 2 // java.lang.Exception e
         7: .line 240
      StackMap locals:
      StackMap stack:
            iconst_1
            putstatic org.h2.jdbc.JdbcConnection.keepOpenStackTrace:Z
         8: .line 241
            aload 1 /* w */
            invokevirtual org.h2.util.CloseWatcher.getOpenStackTrace:()Ljava/lang/String;
            astore 2 /* s */
        start local 2 // java.lang.String s
         9: .line 243
            ldc 90018
            invokestatic org.h2.message.DbException.get:(I)Lorg/h2/message/DbException;
        10: .line 242
            astore 3 /* ex */
        start local 3 // java.lang.Exception ex
        11: .line 244
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.trace:Lorg/h2/message/Trace;
            aload 3 /* ex */
            aload 2 /* s */
            invokevirtual org.h2.message.Trace.error:(Ljava/lang/Throwable;Ljava/lang/String;)V
        end local 3 // java.lang.Exception ex
        end local 2 // java.lang.String s
        end local 1 // org.h2.util.CloseWatcher w
        12: .line 228
            goto 0
        13: .line 246
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   14     0  this  Lorg/h2/jdbc/JdbcConnection;
            1   12     1     w  Lorg/h2/util/CloseWatcher;
            6    7     2     e  Ljava/lang/Exception;
            9   12     2     s  Ljava/lang/String;
           11   12     3    ex  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           3     4       5  Class java.lang.Exception

  public java.sql.Statement createStatement();
    descriptor: ()Ljava/sql/Statement;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=2, args_size=1
        start local 0 // org.h2.jdbc.JdbcConnection this
         0: .line 257
            bipush 8
            invokestatic org.h2.jdbc.JdbcConnection.getNextId:(I)I
            istore 1 /* id */
        start local 1 // int id
         1: .line 258
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.isDebugEnabled:()Z
            ifeq 5
         2: .line 259
            aload 0 /* this */
            ldc "Statement"
            bipush 8
            iload 1 /* id */
         3: .line 260
            ldc "createStatement()"
         4: .line 259
            invokevirtual org.h2.jdbc.JdbcConnection.debugCodeAssign:(Ljava/lang/String;IILjava/lang/String;)V
         5: .line 262
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.checkClosed:()V
         6: .line 263
            new org.h2.jdbc.JdbcStatement
            dup
            aload 0 /* this */
            iload 1 /* id */
            sipush 1003
         7: .line 264
            sipush 1007
            iconst_0
         8: .line 263
            invokespecial org.h2.jdbc.JdbcStatement.<init>:(Lorg/h2/jdbc/JdbcConnection;IIIZ)V
         9: areturn
        end local 1 // int id
        10: .line 265
      StackMap locals: org.h2.jdbc.JdbcConnection
      StackMap stack: java.lang.Exception
            astore 1 /* e */
        start local 1 // java.lang.Exception e
        11: .line 266
            aload 0 /* this */
            aload 1 /* e */
            invokevirtual org.h2.jdbc.JdbcConnection.logAndConvert:(Ljava/lang/Throwable;)Ljava/sql/SQLException;
            athrow
        end local 1 // java.lang.Exception e
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   12     0  this  Lorg/h2/jdbc/JdbcConnection;
            1   10     1    id  I
           11   12     1     e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           0     9      10  Class java.lang.Exception
    Exceptions:
      throws java.sql.SQLException

  public java.sql.Statement createStatement(int, int);
    descriptor: (II)Ljava/sql/Statement;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=4, args_size=3
        start local 0 // org.h2.jdbc.JdbcConnection this
        start local 1 // int resultSetType
        start local 2 // int resultSetConcurrency
         0: .line 283
            bipush 8
            invokestatic org.h2.jdbc.JdbcConnection.getNextId:(I)I
            istore 3 /* id */
        start local 3 // int id
         1: .line 284
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.isDebugEnabled:()Z
            ifeq 7
         2: .line 285
            aload 0 /* this */
            ldc "Statement"
            bipush 8
            iload 3 /* id */
         3: .line 286
            new java.lang.StringBuilder
            dup
            ldc "createStatement("
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 1 /* resultSetType */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ", "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         4: .line 287
            iload 2 /* resultSetConcurrency */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ")"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         5: .line 286
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         6: .line 285
            invokevirtual org.h2.jdbc.JdbcConnection.debugCodeAssign:(Ljava/lang/String;IILjava/lang/String;)V
         7: .line 289
      StackMap locals: int
      StackMap stack:
            iload 1 /* resultSetType */
            iload 2 /* resultSetConcurrency */
            invokestatic org.h2.jdbc.JdbcConnection.checkTypeConcurrency:(II)V
         8: .line 290
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.checkClosed:()V
         9: .line 291
            new org.h2.jdbc.JdbcStatement
            dup
            aload 0 /* this */
            iload 3 /* id */
            iload 1 /* resultSetType */
        10: .line 292
            iload 2 /* resultSetConcurrency */
            iconst_0
        11: .line 291
            invokespecial org.h2.jdbc.JdbcStatement.<init>:(Lorg/h2/jdbc/JdbcConnection;IIIZ)V
        12: areturn
        end local 3 // int id
        13: .line 293
      StackMap locals: org.h2.jdbc.JdbcConnection int int
      StackMap stack: java.lang.Exception
            astore 3 /* e */
        start local 3 // java.lang.Exception e
        14: .line 294
            aload 0 /* this */
            aload 3 /* e */
            invokevirtual org.h2.jdbc.JdbcConnection.logAndConvert:(Ljava/lang/Throwable;)Ljava/sql/SQLException;
            athrow
        end local 3 // java.lang.Exception e
        end local 2 // int resultSetConcurrency
        end local 1 // int resultSetType
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0   15     0                  this  Lorg/h2/jdbc/JdbcConnection;
            0   15     1         resultSetType  I
            0   15     2  resultSetConcurrency  I
            1   13     3                    id  I
           14   15     3                     e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           0    12      13  Class java.lang.Exception
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
                      Name  Flags
      resultSetType         
      resultSetConcurrency  

  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.h2.jdbc.JdbcConnection this
        start local 1 // int resultSetType
        start local 2 // int resultSetConcurrency
        start local 3 // int resultSetHoldability
         0: .line 314
            bipush 8
            invokestatic org.h2.jdbc.JdbcConnection.getNextId:(I)I
            istore 4 /* id */
        start local 4 // int id
         1: .line 315
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.isDebugEnabled:()Z
            ifeq 8
         2: .line 316
            aload 0 /* this */
            ldc "Statement"
            bipush 8
            iload 4 /* id */
         3: .line 317
            new java.lang.StringBuilder
            dup
            ldc "createStatement("
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 1 /* resultSetType */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ", "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         4: .line 318
            iload 2 /* resultSetConcurrency */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ", "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         5: .line 319
            iload 3 /* resultSetHoldability */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ")"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         6: .line 317
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         7: .line 316
            invokevirtual org.h2.jdbc.JdbcConnection.debugCodeAssign:(Ljava/lang/String;IILjava/lang/String;)V
         8: .line 321
      StackMap locals: int
      StackMap stack:
            iload 1 /* resultSetType */
            iload 2 /* resultSetConcurrency */
            invokestatic org.h2.jdbc.JdbcConnection.checkTypeConcurrency:(II)V
         9: .line 322
            iload 3 /* resultSetHoldability */
            invokestatic org.h2.jdbc.JdbcConnection.checkHoldability:(I)V
        10: .line 323
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.checkClosed:()V
        11: .line 324
            new org.h2.jdbc.JdbcStatement
            dup
            aload 0 /* this */
            iload 4 /* id */
            iload 1 /* resultSetType */
        12: .line 325
            iload 2 /* resultSetConcurrency */
            iconst_0
        13: .line 324
            invokespecial org.h2.jdbc.JdbcStatement.<init>:(Lorg/h2/jdbc/JdbcConnection;IIIZ)V
        14: areturn
        end local 4 // int id
        15: .line 326
      StackMap locals: org.h2.jdbc.JdbcConnection int int int
      StackMap stack: java.lang.Exception
            astore 4 /* e */
        start local 4 // java.lang.Exception e
        16: .line 327
            aload 0 /* this */
            aload 4 /* e */
            invokevirtual org.h2.jdbc.JdbcConnection.logAndConvert:(Ljava/lang/Throwable;)Ljava/sql/SQLException;
            athrow
        end local 4 // java.lang.Exception e
        end local 3 // int resultSetHoldability
        end local 2 // int resultSetConcurrency
        end local 1 // int resultSetType
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0   17     0                  this  Lorg/h2/jdbc/JdbcConnection;
            0   17     1         resultSetType  I
            0   17     2  resultSetConcurrency  I
            0   17     3  resultSetHoldability  I
            1   15     4                    id  I
           16   17     4                     e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           0    14      15  Class java.lang.Exception
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
                      Name  Flags
      resultSetType         
      resultSetConcurrency  
      resultSetHoldability  

  public java.sql.PreparedStatement prepareStatement(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/sql/PreparedStatement;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=9, locals=3, args_size=2
        start local 0 // org.h2.jdbc.JdbcConnection this
        start local 1 // java.lang.String sql
         0: .line 341
            iconst_3
            invokestatic org.h2.jdbc.JdbcConnection.getNextId:(I)I
            istore 2 /* id */
        start local 2 // int id
         1: .line 342
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.isDebugEnabled:()Z
            ifeq 6
         2: .line 343
            aload 0 /* this */
            ldc "PreparedStatement"
         3: .line 344
            iconst_3
            iload 2 /* id */
         4: .line 345
            new java.lang.StringBuilder
            dup
            ldc "prepareStatement("
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* sql */
            invokestatic org.h2.jdbc.JdbcConnection.quote:(Ljava/lang/String;)Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc ")"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         5: .line 343
            invokevirtual org.h2.jdbc.JdbcConnection.debugCodeAssign:(Ljava/lang/String;IILjava/lang/String;)V
         6: .line 347
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.checkClosed:()V
         7: .line 348
            aload 1 /* sql */
            invokestatic org.h2.jdbc.JdbcConnection.translateSQL:(Ljava/lang/String;)Ljava/lang/String;
            astore 1 /* sql */
         8: .line 349
            new org.h2.jdbc.JdbcPreparedStatement
            dup
            aload 0 /* this */
            aload 1 /* sql */
            iload 2 /* id */
         9: .line 350
            sipush 1003
        10: .line 351
            sipush 1007
            iconst_0
            iconst_0
            invokestatic java.lang.Boolean.valueOf:(Z)Ljava/lang/Boolean;
        11: .line 349
            invokespecial org.h2.jdbc.JdbcPreparedStatement.<init>:(Lorg/h2/jdbc/JdbcConnection;Ljava/lang/String;IIIZLjava/lang/Object;)V
        12: areturn
        end local 2 // int id
        13: .line 352
      StackMap locals: org.h2.jdbc.JdbcConnection java.lang.String
      StackMap stack: java.lang.Exception
            astore 2 /* e */
        start local 2 // java.lang.Exception e
        14: .line 353
            aload 0 /* this */
            aload 2 /* e */
            invokevirtual org.h2.jdbc.JdbcConnection.logAndConvert:(Ljava/lang/Throwable;)Ljava/sql/SQLException;
            athrow
        end local 2 // java.lang.Exception e
        end local 1 // java.lang.String sql
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   15     0  this  Lorg/h2/jdbc/JdbcConnection;
            0   15     1   sql  Ljava/lang/String;
            1   13     2    id  I
           14   15     2     e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           0    12      13  Class java.lang.Exception
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
      Name  Flags
      sql   

  java.sql.PreparedStatement prepareAutoCloseStatement(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/sql/PreparedStatement;
    flags: (0x0000) 
    Code:
      stack=9, locals=3, args_size=2
        start local 0 // org.h2.jdbc.JdbcConnection this
        start local 1 // java.lang.String sql
         0: .line 367
            iconst_3
            invokestatic org.h2.jdbc.JdbcConnection.getNextId:(I)I
            istore 2 /* id */
        start local 2 // int id
         1: .line 368
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.isDebugEnabled:()Z
            ifeq 6
         2: .line 369
            aload 0 /* this */
            ldc "PreparedStatement"
         3: .line 370
            iconst_3
            iload 2 /* id */
         4: .line 371
            new java.lang.StringBuilder
            dup
            ldc "prepareStatement("
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* sql */
            invokestatic org.h2.jdbc.JdbcConnection.quote:(Ljava/lang/String;)Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc ")"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         5: .line 369
            invokevirtual org.h2.jdbc.JdbcConnection.debugCodeAssign:(Ljava/lang/String;IILjava/lang/String;)V
         6: .line 373
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.checkClosed:()V
         7: .line 374
            aload 1 /* sql */
            invokestatic org.h2.jdbc.JdbcConnection.translateSQL:(Ljava/lang/String;)Ljava/lang/String;
            astore 1 /* sql */
         8: .line 375
            new org.h2.jdbc.JdbcPreparedStatement
            dup
            aload 0 /* this */
            aload 1 /* sql */
            iload 2 /* id */
         9: .line 376
            sipush 1003
        10: .line 377
            sipush 1007
            iconst_1
            iconst_0
            invokestatic java.lang.Boolean.valueOf:(Z)Ljava/lang/Boolean;
        11: .line 375
            invokespecial org.h2.jdbc.JdbcPreparedStatement.<init>:(Lorg/h2/jdbc/JdbcConnection;Ljava/lang/String;IIIZLjava/lang/Object;)V
        12: areturn
        end local 2 // int id
        13: .line 378
      StackMap locals: org.h2.jdbc.JdbcConnection java.lang.String
      StackMap stack: java.lang.Exception
            astore 2 /* e */
        start local 2 // java.lang.Exception e
        14: .line 379
            aload 0 /* this */
            aload 2 /* e */
            invokevirtual org.h2.jdbc.JdbcConnection.logAndConvert:(Ljava/lang/Throwable;)Ljava/sql/SQLException;
            athrow
        end local 2 // java.lang.Exception e
        end local 1 // java.lang.String sql
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   15     0  this  Lorg/h2/jdbc/JdbcConnection;
            0   15     1   sql  Ljava/lang/String;
            1   13     2    id  I
           14   15     2     e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           0    12      13  Class java.lang.Exception
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
      Name  Flags
      sql   

  public java.sql.DatabaseMetaData getMetaData();
    descriptor: ()Ljava/sql/DatabaseMetaData;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=1
        start local 0 // org.h2.jdbc.JdbcConnection this
         0: .line 392
            iconst_2
            invokestatic org.h2.jdbc.JdbcConnection.getNextId:(I)I
            istore 1 /* id */
        start local 1 // int id
         1: .line 393
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.isDebugEnabled:()Z
            ifeq 5
         2: .line 394
            aload 0 /* this */
            ldc "DatabaseMetaData"
         3: .line 395
            iconst_2
            iload 1 /* id */
            ldc "getMetaData()"
         4: .line 394
            invokevirtual org.h2.jdbc.JdbcConnection.debugCodeAssign:(Ljava/lang/String;IILjava/lang/String;)V
         5: .line 397
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.checkClosed:()V
         6: .line 398
            new org.h2.jdbc.JdbcDatabaseMetaData
            dup
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.trace:Lorg/h2/message/Trace;
            iload 1 /* id */
            invokespecial org.h2.jdbc.JdbcDatabaseMetaData.<init>:(Lorg/h2/jdbc/JdbcConnection;Lorg/h2/message/Trace;I)V
         7: areturn
        end local 1 // int id
         8: .line 399
      StackMap locals: org.h2.jdbc.JdbcConnection
      StackMap stack: java.lang.Exception
            astore 1 /* e */
        start local 1 // java.lang.Exception e
         9: .line 400
            aload 0 /* this */
            aload 1 /* e */
            invokevirtual org.h2.jdbc.JdbcConnection.logAndConvert:(Ljava/lang/Throwable;)Ljava/sql/SQLException;
            athrow
        end local 1 // java.lang.Exception e
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Lorg/h2/jdbc/JdbcConnection;
            1    8     1    id  I
            9   10     1     e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           0     7       8  Class java.lang.Exception
    Exceptions:
      throws java.sql.SQLException

  public org.h2.engine.SessionInterface getSession();
    descriptor: ()Lorg/h2/engine/SessionInterface;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.jdbc.JdbcConnection this
         0: .line 408
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.session:Lorg/h2/engine/SessionInterface;
            areturn
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/jdbc/JdbcConnection;

  public synchronized void close();
    descriptor: ()V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=5, args_size=1
        start local 0 // org.h2.jdbc.JdbcConnection this
         0: .line 420
            aload 0 /* this */
            ldc "close"
            invokevirtual org.h2.jdbc.JdbcConnection.debugCodeCall:(Ljava/lang/String;)V
         1: .line 421
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.session:Lorg/h2/engine/SessionInterface;
            ifnonnull 3
         2: .line 422
            return
         3: .line 424
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.watcher:Lorg/h2/util/CloseWatcher;
            invokestatic org.h2.util.CloseWatcher.unregister:(Lorg/h2/util/CloseWatcher;)V
         4: .line 425
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.session:Lorg/h2/engine/SessionInterface;
            invokeinterface org.h2.engine.SessionInterface.cancel:()V
         5: .line 426
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.session:Lorg/h2/engine/SessionInterface;
            dup
            astore 1
            monitorenter
         6: .line 427
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.executingStatement:Ljava/sql/Statement;
            ifnull 10
         7: .line 429
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.executingStatement:Ljava/sql/Statement;
            invokeinterface java.sql.Statement.cancel:()V
         8: .line 430
            goto 10
      StackMap locals: org.h2.jdbc.JdbcConnection org.h2.engine.SessionInterface
      StackMap stack: java.lang.NullPointerException
         9: pop
        10: .line 435
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.session:Lorg/h2/engine/SessionInterface;
            invokeinterface org.h2.engine.SessionInterface.isClosed:()Z
            ifne 29
        11: .line 437
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.session:Lorg/h2/engine/SessionInterface;
            invokeinterface org.h2.engine.SessionInterface.hasPendingTransaction:()Z
            ifeq 19
        12: .line 441
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.session:Lorg/h2/engine/SessionInterface;
            iconst_1
            invokeinterface org.h2.engine.SessionInterface.isReconnectNeeded:(Z)Z
            ifne 18
        13: .line 443
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.rollbackInternal:()V
        14: .line 444
            goto 18
      StackMap locals:
      StackMap stack: org.h2.message.DbException
        15: astore 2 /* e */
        start local 2 // org.h2.message.DbException e
        16: .line 447
            aload 2 /* e */
            invokevirtual org.h2.message.DbException.getErrorCode:()I
            ldc 90067
            if_icmpeq 18
        17: .line 448
            aload 2 /* e */
            athrow
        end local 2 // org.h2.message.DbException e
        18: .line 452
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.session:Lorg/h2/engine/SessionInterface;
            invokeinterface org.h2.engine.SessionInterface.afterWriting:()V
        19: .line 454
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.closePreparedCommands:()V
        20: .line 455
            goto 24
      StackMap locals:
      StackMap stack: java.lang.Throwable
        21: astore 3
        22: .line 456
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.session:Lorg/h2/engine/SessionInterface;
            invokeinterface org.h2.engine.SessionInterface.close:()V
        23: .line 457
            aload 3
            athrow
        24: .line 456
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.session:Lorg/h2/engine/SessionInterface;
            invokeinterface org.h2.engine.SessionInterface.close:()V
        25: .line 459
            goto 29
      StackMap locals:
      StackMap stack: java.lang.Throwable
        26: astore 4
        27: .line 460
            aload 0 /* this */
            aconst_null
            putfield org.h2.jdbc.JdbcConnection.session:Lorg/h2/engine/SessionInterface;
        28: .line 461
            aload 4
            athrow
        29: .line 460
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aconst_null
            putfield org.h2.jdbc.JdbcConnection.session:Lorg/h2/engine/SessionInterface;
        30: .line 426
            aload 1
            monitorexit
        31: goto 36
      StackMap locals:
      StackMap stack: java.lang.Throwable
        32: aload 1
            monitorexit
        33: athrow
        34: .line 463
      StackMap locals: org.h2.jdbc.JdbcConnection
      StackMap stack: java.lang.Throwable
            astore 1 /* e */
        start local 1 // java.lang.Throwable e
        35: .line 464
            aload 0 /* this */
            aload 1 /* e */
            invokevirtual org.h2.jdbc.JdbcConnection.logAndConvert:(Ljava/lang/Throwable;)Ljava/sql/SQLException;
            athrow
        end local 1 // java.lang.Throwable e
        36: .line 466
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   37     0  this  Lorg/h2/jdbc/JdbcConnection;
           16   18     2     e  Lorg/h2/message/DbException;
           35   36     1     e  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           7     8       9  Class java.lang.NullPointerException
          13    14      15  Class org.h2.message.DbException
          11    21      21  any
          10    26      26  any
           6    31      32  any
          32    33      32  any
           0     2      34  Class java.lang.Throwable
           3    34      34  Class java.lang.Throwable
    Exceptions:
      throws java.sql.SQLException

  private void closePreparedCommands();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.h2.jdbc.JdbcConnection this
         0: .line 469
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.commit:Lorg/h2/command/CommandInterface;
            invokestatic org.h2.jdbc.JdbcConnection.closeAndSetNull:(Lorg/h2/command/CommandInterface;)Lorg/h2/command/CommandInterface;
            putfield org.h2.jdbc.JdbcConnection.commit:Lorg/h2/command/CommandInterface;
         1: .line 470
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.rollback:Lorg/h2/command/CommandInterface;
            invokestatic org.h2.jdbc.JdbcConnection.closeAndSetNull:(Lorg/h2/command/CommandInterface;)Lorg/h2/command/CommandInterface;
            putfield org.h2.jdbc.JdbcConnection.rollback:Lorg/h2/command/CommandInterface;
         2: .line 471
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.getReadOnly:Lorg/h2/command/CommandInterface;
            invokestatic org.h2.jdbc.JdbcConnection.closeAndSetNull:(Lorg/h2/command/CommandInterface;)Lorg/h2/command/CommandInterface;
            putfield org.h2.jdbc.JdbcConnection.getReadOnly:Lorg/h2/command/CommandInterface;
         3: .line 472
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.getGeneratedKeys:Lorg/h2/command/CommandInterface;
            invokestatic org.h2.jdbc.JdbcConnection.closeAndSetNull:(Lorg/h2/command/CommandInterface;)Lorg/h2/command/CommandInterface;
            putfield org.h2.jdbc.JdbcConnection.getGeneratedKeys:Lorg/h2/command/CommandInterface;
         4: .line 473
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.getLockMode:Lorg/h2/command/CommandInterface;
            invokestatic org.h2.jdbc.JdbcConnection.closeAndSetNull:(Lorg/h2/command/CommandInterface;)Lorg/h2/command/CommandInterface;
            putfield org.h2.jdbc.JdbcConnection.getLockMode:Lorg/h2/command/CommandInterface;
         5: .line 474
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.setLockMode:Lorg/h2/command/CommandInterface;
            invokestatic org.h2.jdbc.JdbcConnection.closeAndSetNull:(Lorg/h2/command/CommandInterface;)Lorg/h2/command/CommandInterface;
            putfield org.h2.jdbc.JdbcConnection.setLockMode:Lorg/h2/command/CommandInterface;
         6: .line 475
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.getQueryTimeout:Lorg/h2/command/CommandInterface;
            invokestatic org.h2.jdbc.JdbcConnection.closeAndSetNull:(Lorg/h2/command/CommandInterface;)Lorg/h2/command/CommandInterface;
            putfield org.h2.jdbc.JdbcConnection.getQueryTimeout:Lorg/h2/command/CommandInterface;
         7: .line 476
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.setQueryTimeout:Lorg/h2/command/CommandInterface;
            invokestatic org.h2.jdbc.JdbcConnection.closeAndSetNull:(Lorg/h2/command/CommandInterface;)Lorg/h2/command/CommandInterface;
            putfield org.h2.jdbc.JdbcConnection.setQueryTimeout:Lorg/h2/command/CommandInterface;
         8: .line 477
            return
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lorg/h2/jdbc/JdbcConnection;

  private static org.h2.command.CommandInterface closeAndSetNull(org.h2.command.CommandInterface);
    descriptor: (Lorg/h2/command/CommandInterface;)Lorg/h2/command/CommandInterface;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.command.CommandInterface command
         0: .line 480
            aload 0 /* command */
            ifnull 2
         1: .line 481
            aload 0 /* command */
            invokeinterface org.h2.command.CommandInterface.close:()V
         2: .line 483
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        end local 0 // org.h2.command.CommandInterface command
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0  command  Lorg/h2/command/CommandInterface;
    MethodParameters:
         Name  Flags
      command  

  public synchronized void setAutoCommit(boolean);
    descriptor: (Z)V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // org.h2.jdbc.JdbcConnection this
        start local 1 // boolean autoCommit
         0: .line 497
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.isDebugEnabled:()Z
            ifeq 2
         1: .line 498
            aload 0 /* this */
            new java.lang.StringBuilder
            dup
            ldc "setAutoCommit("
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 1 /* autoCommit */
            invokevirtual java.lang.StringBuilder.append:(Z)Ljava/lang/StringBuilder;
            ldc ");"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual org.h2.jdbc.JdbcConnection.debugCode:(Ljava/lang/String;)V
         2: .line 500
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.checkClosed:()V
         3: .line 501
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.session:Lorg/h2/engine/SessionInterface;
            dup
            astore 2
            monitorenter
         4: .line 502
            iload 1 /* autoCommit */
            ifeq 6
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.session:Lorg/h2/engine/SessionInterface;
            invokeinterface org.h2.engine.SessionInterface.getAutoCommit:()Z
            ifne 6
         5: .line 503
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.commit:()V
         6: .line 505
      StackMap locals: org.h2.engine.SessionInterface
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.session:Lorg/h2/engine/SessionInterface;
            iload 1 /* autoCommit */
            invokeinterface org.h2.engine.SessionInterface.setAutoCommit:(Z)V
         7: .line 501
            aload 2
            monitorexit
         8: goto 13
      StackMap locals:
      StackMap stack: java.lang.Throwable
         9: aload 2
            monitorexit
        10: athrow
        11: .line 507
      StackMap locals: org.h2.jdbc.JdbcConnection int
      StackMap stack: java.lang.Exception
            astore 2 /* e */
        start local 2 // java.lang.Exception e
        12: .line 508
            aload 0 /* this */
            aload 2 /* e */
            invokevirtual org.h2.jdbc.JdbcConnection.logAndConvert:(Ljava/lang/Throwable;)Ljava/sql/SQLException;
            athrow
        end local 2 // java.lang.Exception e
        13: .line 510
      StackMap locals:
      StackMap stack:
            return
        end local 1 // boolean autoCommit
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   14     0        this  Lorg/h2/jdbc/JdbcConnection;
            0   14     1  autoCommit  Z
           12   13     2           e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           4     8       9  any
           9    10       9  any
           0    11      11  Class java.lang.Exception
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
            Name  Flags
      autoCommit  

  public synchronized boolean getAutoCommit();
    descriptor: ()Z
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.h2.jdbc.JdbcConnection this
         0: .line 521
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.checkClosed:()V
         1: .line 522
            aload 0 /* this */
            ldc "getAutoCommit"
            invokevirtual org.h2.jdbc.JdbcConnection.debugCodeCall:(Ljava/lang/String;)V
         2: .line 523
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.session:Lorg/h2/engine/SessionInterface;
            invokeinterface org.h2.engine.SessionInterface.getAutoCommit:()Z
         3: ireturn
         4: .line 524
      StackMap locals:
      StackMap stack: java.lang.Exception
            astore 1 /* e */
        start local 1 // java.lang.Exception e
         5: .line 525
            aload 0 /* this */
            aload 1 /* e */
            invokevirtual org.h2.jdbc.JdbcConnection.logAndConvert:(Ljava/lang/Throwable;)Ljava/sql/SQLException;
            athrow
        end local 1 // java.lang.Exception e
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/h2/jdbc/JdbcConnection;
            5    6     1     e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           0     3       4  Class java.lang.Exception
    Exceptions:
      throws java.sql.SQLException

  public synchronized void commit();
    descriptor: ()V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // org.h2.jdbc.JdbcConnection this
         0: .line 538
            aload 0 /* this */
            ldc "commit"
            invokevirtual org.h2.jdbc.JdbcConnection.debugCodeCall:(Ljava/lang/String;)V
         1: .line 539
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.checkClosedForWrite:()V
         2: .line 541
            aload 0 /* this */
            aload 0 /* this */
            ldc "COMMIT"
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.commit:Lorg/h2/command/CommandInterface;
            invokevirtual org.h2.jdbc.JdbcConnection.prepareCommand:(Ljava/lang/String;Lorg/h2/command/CommandInterface;)Lorg/h2/command/CommandInterface;
            putfield org.h2.jdbc.JdbcConnection.commit:Lorg/h2/command/CommandInterface;
         3: .line 542
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.commit:Lorg/h2/command/CommandInterface;
            iconst_0
            invokestatic java.lang.Boolean.valueOf:(Z)Ljava/lang/Boolean;
            invokeinterface org.h2.command.CommandInterface.executeUpdate:(Ljava/lang/Object;)Lorg/h2/result/ResultWithGeneratedKeys;
            pop
         4: .line 543
            goto 8
      StackMap locals:
      StackMap stack: java.lang.Throwable
         5: astore 1
         6: .line 544
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.afterWriting:()V
         7: .line 545
            aload 1
            athrow
         8: .line 544
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.afterWriting:()V
         9: .line 546
            goto 12
      StackMap locals:
      StackMap stack: java.lang.Exception
        10: astore 1 /* e */
        start local 1 // java.lang.Exception e
        11: .line 547
            aload 0 /* this */
            aload 1 /* e */
            invokevirtual org.h2.jdbc.JdbcConnection.logAndConvert:(Ljava/lang/Throwable;)Ljava/sql/SQLException;
            athrow
        end local 1 // java.lang.Exception e
        12: .line 549
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   13     0  this  Lorg/h2/jdbc/JdbcConnection;
           11   12     1     e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           2     5       5  any
           0     9      10  Class java.lang.Exception
    Exceptions:
      throws java.sql.SQLException

  public synchronized void rollback();
    descriptor: ()V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.h2.jdbc.JdbcConnection this
         0: .line 560
            aload 0 /* this */
            ldc "rollback"
            invokevirtual org.h2.jdbc.JdbcConnection.debugCodeCall:(Ljava/lang/String;)V
         1: .line 561
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.checkClosedForWrite:()V
         2: .line 563
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.rollbackInternal:()V
         3: .line 564
            goto 7
      StackMap locals:
      StackMap stack: java.lang.Throwable
         4: astore 1
         5: .line 565
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.afterWriting:()V
         6: .line 566
            aload 1
            athrow
         7: .line 565
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.afterWriting:()V
         8: .line 567
            goto 11
      StackMap locals:
      StackMap stack: java.lang.Exception
         9: astore 1 /* e */
        start local 1 // java.lang.Exception e
        10: .line 568
            aload 0 /* this */
            aload 1 /* e */
            invokevirtual org.h2.jdbc.JdbcConnection.logAndConvert:(Ljava/lang/Throwable;)Ljava/sql/SQLException;
            athrow
        end local 1 // java.lang.Exception e
        11: .line 570
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   12     0  this  Lorg/h2/jdbc/JdbcConnection;
           10   11     1     e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           2     4       4  any
           0     8       9  Class java.lang.Exception
    Exceptions:
      throws java.sql.SQLException

  public boolean isClosed();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.h2.jdbc.JdbcConnection this
         0: .line 580
            aload 0 /* this */
            ldc "isClosed"
            invokevirtual org.h2.jdbc.JdbcConnection.debugCodeCall:(Ljava/lang/String;)V
         1: .line 581
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.session:Lorg/h2/engine/SessionInterface;
            ifnull 2
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.session:Lorg/h2/engine/SessionInterface;
            invokeinterface org.h2.engine.SessionInterface.isClosed:()Z
            ifne 2
            iconst_0
            ireturn
      StackMap locals:
      StackMap stack:
         2: iconst_1
         3: ireturn
         4: .line 582
      StackMap locals:
      StackMap stack: java.lang.Exception
            astore 1 /* e */
        start local 1 // java.lang.Exception e
         5: .line 583
            aload 0 /* this */
            aload 1 /* e */
            invokevirtual org.h2.jdbc.JdbcConnection.logAndConvert:(Ljava/lang/Throwable;)Ljava/sql/SQLException;
            athrow
        end local 1 // java.lang.Exception e
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/h2/jdbc/JdbcConnection;
            5    6     1     e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           0     3       4  Class java.lang.Exception
    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=3, locals=3, args_size=2
        start local 0 // org.h2.jdbc.JdbcConnection this
        start local 1 // java.lang.String sql
         0: .line 597
            aload 0 /* this */
            ldc "nativeSQL"
            aload 1 /* sql */
            invokevirtual org.h2.jdbc.JdbcConnection.debugCodeCall:(Ljava/lang/String;Ljava/lang/String;)V
         1: .line 598
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.checkClosed:()V
         2: .line 599
            aload 1 /* sql */
            invokestatic org.h2.jdbc.JdbcConnection.translateSQL:(Ljava/lang/String;)Ljava/lang/String;
         3: areturn
         4: .line 600
      StackMap locals:
      StackMap stack: java.lang.Exception
            astore 2 /* e */
        start local 2 // java.lang.Exception e
         5: .line 601
            aload 0 /* this */
            aload 2 /* e */
            invokevirtual org.h2.jdbc.JdbcConnection.logAndConvert:(Ljava/lang/Throwable;)Ljava/sql/SQLException;
            athrow
        end local 2 // java.lang.Exception e
        end local 1 // java.lang.String sql
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/h2/jdbc/JdbcConnection;
            0    6     1   sql  Ljava/lang/String;
            5    6     2     e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           0     3       4  Class java.lang.Exception
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
      Name  Flags
      sql   

  public void setReadOnly(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // org.h2.jdbc.JdbcConnection this
        start local 1 // boolean readOnly
         0: .line 615
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.isDebugEnabled:()Z
            ifeq 2
         1: .line 616
            aload 0 /* this */
            new java.lang.StringBuilder
            dup
            ldc "setReadOnly("
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 1 /* readOnly */
            invokevirtual java.lang.StringBuilder.append:(Z)Ljava/lang/StringBuilder;
            ldc ");"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual org.h2.jdbc.JdbcConnection.debugCode:(Ljava/lang/String;)V
         2: .line 618
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.checkClosed:()V
         3: .line 619
            goto 6
      StackMap locals:
      StackMap stack: java.lang.Exception
         4: astore 2 /* e */
        start local 2 // java.lang.Exception e
         5: .line 620
            aload 0 /* this */
            aload 2 /* e */
            invokevirtual org.h2.jdbc.JdbcConnection.logAndConvert:(Ljava/lang/Throwable;)Ljava/sql/SQLException;
            athrow
        end local 2 // java.lang.Exception e
         6: .line 622
      StackMap locals:
      StackMap stack:
            return
        end local 1 // boolean readOnly
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    7     0      this  Lorg/h2/jdbc/JdbcConnection;
            0    7     1  readOnly  Z
            5    6     2         e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           0     3       4  Class java.lang.Exception
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
          Name  Flags
      readOnly  

  public boolean isReadOnly();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // org.h2.jdbc.JdbcConnection this
         0: .line 633
            aload 0 /* this */
            ldc "isReadOnly"
            invokevirtual org.h2.jdbc.JdbcConnection.debugCodeCall:(Ljava/lang/String;)V
         1: .line 634
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.checkClosed:()V
         2: .line 635
            aload 0 /* this */
            aload 0 /* this */
            ldc "CALL READONLY()"
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.getReadOnly:Lorg/h2/command/CommandInterface;
            invokevirtual org.h2.jdbc.JdbcConnection.prepareCommand:(Ljava/lang/String;Lorg/h2/command/CommandInterface;)Lorg/h2/command/CommandInterface;
            putfield org.h2.jdbc.JdbcConnection.getReadOnly:Lorg/h2/command/CommandInterface;
         3: .line 636
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.getReadOnly:Lorg/h2/command/CommandInterface;
            iconst_0
            iconst_0
            invokeinterface org.h2.command.CommandInterface.executeQuery:(IZ)Lorg/h2/result/ResultInterface;
            astore 1 /* result */
        start local 1 // org.h2.result.ResultInterface result
         4: .line 637
            aload 1 /* result */
            invokeinterface org.h2.result.ResultInterface.next:()Z
            pop
         5: .line 638
            aload 1 /* result */
            invokeinterface org.h2.result.ResultInterface.currentRow:()[Lorg/h2/value/Value;
            iconst_0
            aaload
            invokevirtual org.h2.value.Value.getBoolean:()Z
         6: ireturn
        end local 1 // org.h2.result.ResultInterface result
         7: .line 639
      StackMap locals:
      StackMap stack: java.lang.Exception
            astore 1 /* e */
        start local 1 // java.lang.Exception e
         8: .line 640
            aload 0 /* this */
            aload 1 /* e */
            invokevirtual org.h2.jdbc.JdbcConnection.logAndConvert:(Ljava/lang/Throwable;)Ljava/sql/SQLException;
            athrow
        end local 1 // java.lang.Exception e
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    9     0    this  Lorg/h2/jdbc/JdbcConnection;
            4    7     1  result  Lorg/h2/result/ResultInterface;
            8    9     1       e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           0     6       7  Class java.lang.Exception
    Exceptions:
      throws java.sql.SQLException

  public void setCatalog(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.h2.jdbc.JdbcConnection this
        start local 1 // java.lang.String catalog
         0: .line 653
            aload 0 /* this */
            ldc "setCatalog"
            aload 1 /* catalog */
            invokevirtual org.h2.jdbc.JdbcConnection.debugCodeCall:(Ljava/lang/String;Ljava/lang/String;)V
         1: .line 654
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.checkClosed:()V
         2: .line 655
            goto 5
      StackMap locals:
      StackMap stack: java.lang.Exception
         3: astore 2 /* e */
        start local 2 // java.lang.Exception e
         4: .line 656
            aload 0 /* this */
            aload 2 /* e */
            invokevirtual org.h2.jdbc.JdbcConnection.logAndConvert:(Ljava/lang/Throwable;)Ljava/sql/SQLException;
            athrow
        end local 2 // java.lang.Exception e
         5: .line 658
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.lang.String catalog
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    6     0     this  Lorg/h2/jdbc/JdbcConnection;
            0    6     1  catalog  Ljava/lang/String;
            4    5     2        e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           0     2       3  Class java.lang.Exception
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
         Name  Flags
      catalog  

  public java.lang.String getCatalog();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // org.h2.jdbc.JdbcConnection this
         0: .line 669
            aload 0 /* this */
            ldc "getCatalog"
            invokevirtual org.h2.jdbc.JdbcConnection.debugCodeCall:(Ljava/lang/String;)V
         1: .line 670
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.checkClosed:()V
         2: .line 671
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.catalog:Ljava/lang/String;
            ifnonnull 10
         3: .line 672
            aload 0 /* this */
            ldc "CALL DATABASE()"
         4: .line 673
            ldc 2147483647
         5: .line 672
            invokevirtual org.h2.jdbc.JdbcConnection.prepareCommand:(Ljava/lang/String;I)Lorg/h2/command/CommandInterface;
            astore 1 /* cat */
        start local 1 // org.h2.command.CommandInterface cat
         6: .line 674
            aload 1 /* cat */
            iconst_0
            iconst_0
            invokeinterface org.h2.command.CommandInterface.executeQuery:(IZ)Lorg/h2/result/ResultInterface;
            astore 2 /* result */
        start local 2 // org.h2.result.ResultInterface result
         7: .line 675
            aload 2 /* result */
            invokeinterface org.h2.result.ResultInterface.next:()Z
            pop
         8: .line 676
            aload 0 /* this */
            aload 2 /* result */
            invokeinterface org.h2.result.ResultInterface.currentRow:()[Lorg/h2/value/Value;
            iconst_0
            aaload
            invokevirtual org.h2.value.Value.getString:()Ljava/lang/String;
            putfield org.h2.jdbc.JdbcConnection.catalog:Ljava/lang/String;
         9: .line 677
            aload 1 /* cat */
            invokeinterface org.h2.command.CommandInterface.close:()V
        end local 2 // org.h2.result.ResultInterface result
        end local 1 // org.h2.command.CommandInterface cat
        10: .line 679
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.catalog:Ljava/lang/String;
        11: areturn
        12: .line 680
      StackMap locals:
      StackMap stack: java.lang.Exception
            astore 1 /* e */
        start local 1 // java.lang.Exception e
        13: .line 681
            aload 0 /* this */
            aload 1 /* e */
            invokevirtual org.h2.jdbc.JdbcConnection.logAndConvert:(Ljava/lang/Throwable;)Ljava/sql/SQLException;
            athrow
        end local 1 // java.lang.Exception e
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   14     0    this  Lorg/h2/jdbc/JdbcConnection;
            6   10     1     cat  Lorg/h2/command/CommandInterface;
            7   10     2  result  Lorg/h2/result/ResultInterface;
           13   14     1       e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           0    11      12  Class java.lang.Exception
    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.h2.jdbc.JdbcConnection this
         0: .line 693
            aload 0 /* this */
            ldc "getWarnings"
            invokevirtual org.h2.jdbc.JdbcConnection.debugCodeCall:(Ljava/lang/String;)V
         1: .line 694
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.checkClosed:()V
         2: .line 695
            aconst_null
            areturn
         3: .line 696
      StackMap locals:
      StackMap stack: java.lang.Exception
            astore 1 /* e */
        start local 1 // java.lang.Exception e
         4: .line 697
            aload 0 /* this */
            aload 1 /* e */
            invokevirtual org.h2.jdbc.JdbcConnection.logAndConvert:(Ljava/lang/Throwable;)Ljava/sql/SQLException;
            athrow
        end local 1 // java.lang.Exception e
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/h2/jdbc/JdbcConnection;
            4    5     1     e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           0     2       3  Class java.lang.Exception
    Exceptions:
      throws java.sql.SQLException

  public void clearWarnings();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.h2.jdbc.JdbcConnection this
         0: .line 707
            aload 0 /* this */
            ldc "clearWarnings"
            invokevirtual org.h2.jdbc.JdbcConnection.debugCodeCall:(Ljava/lang/String;)V
         1: .line 708
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.checkClosed:()V
         2: .line 709
            goto 5
      StackMap locals:
      StackMap stack: java.lang.Exception
         3: astore 1 /* e */
        start local 1 // java.lang.Exception e
         4: .line 710
            aload 0 /* this */
            aload 1 /* e */
            invokevirtual org.h2.jdbc.JdbcConnection.logAndConvert:(Ljava/lang/Throwable;)Ljava/sql/SQLException;
            athrow
        end local 1 // java.lang.Exception e
         5: .line 712
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/h2/jdbc/JdbcConnection;
            4    5     1     e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           0     2       3  Class java.lang.Exception
    Exceptions:
      throws java.sql.SQLException

  public java.sql.PreparedStatement prepareStatement(java.lang.String, int, int);
    descriptor: (Ljava/lang/String;II)Ljava/sql/PreparedStatement;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=9, locals=5, args_size=4
        start local 0 // org.h2.jdbc.JdbcConnection this
        start local 1 // java.lang.String sql
        start local 2 // int resultSetType
        start local 3 // int resultSetConcurrency
         0: .line 729
            iconst_3
            invokestatic org.h2.jdbc.JdbcConnection.getNextId:(I)I
            istore 4 /* id */
        start local 4 // int id
         1: .line 730
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.isDebugEnabled:()Z
            ifeq 8
         2: .line 731
            aload 0 /* this */
            ldc "PreparedStatement"
         3: .line 732
            iconst_3
            iload 4 /* id */
         4: .line 733
            new java.lang.StringBuilder
            dup
            ldc "prepareStatement("
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* sql */
            invokestatic org.h2.jdbc.JdbcConnection.quote:(Ljava/lang/String;)Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc ", "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            iload 2 /* resultSetType */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
         5: .line 734
            ldc ", "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            iload 3 /* resultSetConcurrency */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ")"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         6: .line 733
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         7: .line 731
            invokevirtual org.h2.jdbc.JdbcConnection.debugCodeAssign:(Ljava/lang/String;IILjava/lang/String;)V
         8: .line 736
      StackMap locals: int
      StackMap stack:
            iload 2 /* resultSetType */
            iload 3 /* resultSetConcurrency */
            invokestatic org.h2.jdbc.JdbcConnection.checkTypeConcurrency:(II)V
         9: .line 737
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.checkClosed:()V
        10: .line 738
            aload 1 /* sql */
            invokestatic org.h2.jdbc.JdbcConnection.translateSQL:(Ljava/lang/String;)Ljava/lang/String;
            astore 1 /* sql */
        11: .line 739
            new org.h2.jdbc.JdbcPreparedStatement
            dup
            aload 0 /* this */
            aload 1 /* sql */
            iload 4 /* id */
            iload 2 /* resultSetType */
        12: .line 740
            iload 3 /* resultSetConcurrency */
            iconst_0
            iconst_0
            invokestatic java.lang.Boolean.valueOf:(Z)Ljava/lang/Boolean;
        13: .line 739
            invokespecial org.h2.jdbc.JdbcPreparedStatement.<init>:(Lorg/h2/jdbc/JdbcConnection;Ljava/lang/String;IIIZLjava/lang/Object;)V
        14: areturn
        end local 4 // int id
        15: .line 741
      StackMap locals: org.h2.jdbc.JdbcConnection java.lang.String int int
      StackMap stack: java.lang.Exception
            astore 4 /* e */
        start local 4 // java.lang.Exception e
        16: .line 742
            aload 0 /* this */
            aload 4 /* e */
            invokevirtual org.h2.jdbc.JdbcConnection.logAndConvert:(Ljava/lang/Throwable;)Ljava/sql/SQLException;
            athrow
        end local 4 // java.lang.Exception e
        end local 3 // int resultSetConcurrency
        end local 2 // int resultSetType
        end local 1 // java.lang.String sql
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0   17     0                  this  Lorg/h2/jdbc/JdbcConnection;
            0   17     1                   sql  Ljava/lang/String;
            0   17     2         resultSetType  I
            0   17     3  resultSetConcurrency  I
            1   15     4                    id  I
           16   17     4                     e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           0    14      15  Class java.lang.Exception
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
                      Name  Flags
      sql                   
      resultSetType         
      resultSetConcurrency  

  public void setTransactionIsolation(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // org.h2.jdbc.JdbcConnection this
        start local 1 // int level
         0: .line 774
            aload 0 /* this */
            ldc "setTransactionIsolation"
            iload 1 /* level */
            i2l
            invokevirtual org.h2.jdbc.JdbcConnection.debugCodeCall:(Ljava/lang/String;J)V
         1: .line 775
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.checkClosed:()V
         2: .line 777
            iload 1 /* level */
            tableswitch { // 1 - 8
                    1: 3
                    2: 5
                    3: 9
                    4: 7
                    5: 9
                    6: 9
                    7: 9
                    8: 7
              default: 9
          }
         3: .line 779
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 2 /* lockMode */
        start local 2 // int lockMode
         4: .line 780
            goto 10
        end local 2 // int lockMode
         5: .line 782
      StackMap locals:
      StackMap stack:
            iconst_3
            istore 2 /* lockMode */
        start local 2 // int lockMode
         6: .line 783
            goto 10
        end local 2 // int lockMode
         7: .line 786
      StackMap locals:
      StackMap stack:
            iconst_1
            istore 2 /* lockMode */
        start local 2 // int lockMode
         8: .line 787
            goto 10
        end local 2 // int lockMode
         9: .line 789
      StackMap locals:
      StackMap stack:
            ldc "level"
            iload 1 /* level */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokestatic org.h2.message.DbException.getInvalidValueException:(Ljava/lang/String;Ljava/lang/Object;)Lorg/h2/message/DbException;
            athrow
        start local 2 // int lockMode
        10: .line 791
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.commit:()V
        11: .line 792
            aload 0 /* this */
            aload 0 /* this */
            ldc "SET LOCK_MODE ?"
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.setLockMode:Lorg/h2/command/CommandInterface;
            invokevirtual org.h2.jdbc.JdbcConnection.prepareCommand:(Ljava/lang/String;Lorg/h2/command/CommandInterface;)Lorg/h2/command/CommandInterface;
            putfield org.h2.jdbc.JdbcConnection.setLockMode:Lorg/h2/command/CommandInterface;
        12: .line 793
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.setLockMode:Lorg/h2/command/CommandInterface;
            invokeinterface org.h2.command.CommandInterface.getParameters:()Ljava/util/ArrayList;
            iconst_0
            invokevirtual java.util.ArrayList.get:(I)Ljava/lang/Object;
            checkcast org.h2.expression.ParameterInterface
            iload 2 /* lockMode */
            invokestatic org.h2.value.ValueInt.get:(I)Lorg/h2/value/ValueInt;
        13: .line 794
            iconst_0
        14: .line 793
            invokeinterface org.h2.expression.ParameterInterface.setValue:(Lorg/h2/value/Value;Z)V
        15: .line 795
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.setLockMode:Lorg/h2/command/CommandInterface;
            iconst_0
            invokestatic java.lang.Boolean.valueOf:(Z)Ljava/lang/Boolean;
            invokeinterface org.h2.command.CommandInterface.executeUpdate:(Ljava/lang/Object;)Lorg/h2/result/ResultWithGeneratedKeys;
            pop
        end local 2 // int lockMode
        16: .line 796
            goto 19
      StackMap locals: org.h2.jdbc.JdbcConnection int
      StackMap stack: java.lang.Exception
        17: astore 2 /* e */
        start local 2 // java.lang.Exception e
        18: .line 797
            aload 0 /* this */
            aload 2 /* e */
            invokevirtual org.h2.jdbc.JdbcConnection.logAndConvert:(Ljava/lang/Throwable;)Ljava/sql/SQLException;
            athrow
        end local 2 // java.lang.Exception e
        19: .line 799
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int level
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   20     0      this  Lorg/h2/jdbc/JdbcConnection;
            0   20     1     level  I
            4    5     2  lockMode  I
            6    7     2  lockMode  I
            8    9     2  lockMode  I
           10   16     2  lockMode  I
           18   19     2         e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           0    16      17  Class java.lang.Exception
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
       Name  Flags
      level  

  public void setQueryTimeout(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // org.h2.jdbc.JdbcConnection this
        start local 1 // int seconds
         0: .line 806
            aload 0 /* this */
            ldc "setQueryTimeout"
            iload 1 /* seconds */
            i2l
            invokevirtual org.h2.jdbc.JdbcConnection.debugCodeCall:(Ljava/lang/String;J)V
         1: .line 807
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.checkClosed:()V
         2: .line 808
            aload 0 /* this */
            aload 0 /* this */
            ldc "SET QUERY_TIMEOUT ?"
         3: .line 809
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.setQueryTimeout:Lorg/h2/command/CommandInterface;
         4: .line 808
            invokevirtual org.h2.jdbc.JdbcConnection.prepareCommand:(Ljava/lang/String;Lorg/h2/command/CommandInterface;)Lorg/h2/command/CommandInterface;
            putfield org.h2.jdbc.JdbcConnection.setQueryTimeout:Lorg/h2/command/CommandInterface;
         5: .line 810
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.setQueryTimeout:Lorg/h2/command/CommandInterface;
            invokeinterface org.h2.command.CommandInterface.getParameters:()Ljava/util/ArrayList;
            iconst_0
            invokevirtual java.util.ArrayList.get:(I)Ljava/lang/Object;
            checkcast org.h2.expression.ParameterInterface
         6: .line 811
            iload 1 /* seconds */
            sipush 1000
            imul
            invokestatic org.h2.value.ValueInt.get:(I)Lorg/h2/value/ValueInt;
            iconst_0
            invokeinterface org.h2.expression.ParameterInterface.setValue:(Lorg/h2/value/Value;Z)V
         7: .line 812
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.setQueryTimeout:Lorg/h2/command/CommandInterface;
            iconst_0
            invokestatic java.lang.Boolean.valueOf:(Z)Ljava/lang/Boolean;
            invokeinterface org.h2.command.CommandInterface.executeUpdate:(Ljava/lang/Object;)Lorg/h2/result/ResultWithGeneratedKeys;
            pop
         8: .line 813
            aload 0 /* this */
            iload 1 /* seconds */
            putfield org.h2.jdbc.JdbcConnection.queryTimeoutCache:I
         9: .line 814
            goto 12
      StackMap locals:
      StackMap stack: java.lang.Exception
        10: astore 2 /* e */
        start local 2 // java.lang.Exception e
        11: .line 815
            aload 0 /* this */
            aload 2 /* e */
            invokevirtual org.h2.jdbc.JdbcConnection.logAndConvert:(Ljava/lang/Throwable;)Ljava/sql/SQLException;
            athrow
        end local 2 // java.lang.Exception e
        12: .line 817
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int seconds
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   13     0     this  Lorg/h2/jdbc/JdbcConnection;
            0   13     1  seconds  I
           11   12     2        e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           0     9      10  Class java.lang.Exception
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
         Name  Flags
      seconds  

  int getQueryTimeout();
    descriptor: ()I
    flags: (0x0000) 
    Code:
      stack=4, locals=3, args_size=1
        start local 0 // org.h2.jdbc.JdbcConnection this
         0: .line 824
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.queryTimeoutCache:I
            iconst_m1
            if_icmpne 15
         1: .line 825
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.checkClosed:()V
         2: .line 826
            aload 0 /* this */
            aload 0 /* this */
         3: .line 827
            ldc "SELECT VALUE FROM INFORMATION_SCHEMA.SETTINGS WHERE NAME=?"
         4: .line 829
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.getQueryTimeout:Lorg/h2/command/CommandInterface;
         5: .line 826
            invokevirtual org.h2.jdbc.JdbcConnection.prepareCommand:(Ljava/lang/String;Lorg/h2/command/CommandInterface;)Lorg/h2/command/CommandInterface;
            putfield org.h2.jdbc.JdbcConnection.getQueryTimeout:Lorg/h2/command/CommandInterface;
         6: .line 830
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.getQueryTimeout:Lorg/h2/command/CommandInterface;
            invokeinterface org.h2.command.CommandInterface.getParameters:()Ljava/util/ArrayList;
            iconst_0
            invokevirtual java.util.ArrayList.get:(I)Ljava/lang/Object;
            checkcast org.h2.expression.ParameterInterface
         7: .line 831
            ldc "QUERY_TIMEOUT"
            invokestatic org.h2.value.ValueString.get:(Ljava/lang/String;)Lorg/h2/value/Value;
            iconst_0
            invokeinterface org.h2.expression.ParameterInterface.setValue:(Lorg/h2/value/Value;Z)V
         8: .line 832
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.getQueryTimeout:Lorg/h2/command/CommandInterface;
            iconst_0
            iconst_0
            invokeinterface org.h2.command.CommandInterface.executeQuery:(IZ)Lorg/h2/result/ResultInterface;
            astore 1 /* result */
        start local 1 // org.h2.result.ResultInterface result
         9: .line 833
            aload 1 /* result */
            invokeinterface org.h2.result.ResultInterface.next:()Z
            pop
        10: .line 834
            aload 1 /* result */
            invokeinterface org.h2.result.ResultInterface.currentRow:()[Lorg/h2/value/Value;
            iconst_0
            aaload
            invokevirtual org.h2.value.Value.getInt:()I
            istore 2 /* queryTimeout */
        start local 2 // int queryTimeout
        11: .line 835
            aload 1 /* result */
            invokeinterface org.h2.result.ResultInterface.close:()V
        12: .line 836
            iload 2 /* queryTimeout */
            ifeq 14
        13: .line 839
            iload 2 /* queryTimeout */
            sipush 999
            iadd
            sipush 1000
            idiv
            istore 2 /* queryTimeout */
        14: .line 841
      StackMap locals: org.h2.result.ResultInterface int
      StackMap stack:
            aload 0 /* this */
            iload 2 /* queryTimeout */
            putfield org.h2.jdbc.JdbcConnection.queryTimeoutCache:I
        end local 2 // int queryTimeout
        end local 1 // org.h2.result.ResultInterface result
        15: .line 843
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.queryTimeoutCache:I
        16: ireturn
        17: .line 844
      StackMap locals:
      StackMap stack: java.lang.Exception
            astore 1 /* e */
        start local 1 // java.lang.Exception e
        18: .line 845
            aload 0 /* this */
            aload 1 /* e */
            invokevirtual org.h2.jdbc.JdbcConnection.logAndConvert:(Ljava/lang/Throwable;)Ljava/sql/SQLException;
            athrow
        end local 1 // java.lang.Exception e
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   19     0          this  Lorg/h2/jdbc/JdbcConnection;
            9   15     1        result  Lorg/h2/result/ResultInterface;
           11   15     2  queryTimeout  I
           18   19     1             e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           0    16      17  Class java.lang.Exception
    Exceptions:
      throws java.sql.SQLException

  public int getTransactionIsolation();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=1
        start local 0 // org.h2.jdbc.JdbcConnection this
         0: .line 858
            aload 0 /* this */
            ldc "getTransactionIsolation"
            invokevirtual org.h2.jdbc.JdbcConnection.debugCodeCall:(Ljava/lang/String;)V
         1: .line 859
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.checkClosed:()V
         2: .line 860
            aload 0 /* this */
            aload 0 /* this */
            ldc "CALL LOCK_MODE()"
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.getLockMode:Lorg/h2/command/CommandInterface;
            invokevirtual org.h2.jdbc.JdbcConnection.prepareCommand:(Ljava/lang/String;Lorg/h2/command/CommandInterface;)Lorg/h2/command/CommandInterface;
            putfield org.h2.jdbc.JdbcConnection.getLockMode:Lorg/h2/command/CommandInterface;
         3: .line 861
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.getLockMode:Lorg/h2/command/CommandInterface;
            iconst_0
            iconst_0
            invokeinterface org.h2.command.CommandInterface.executeQuery:(IZ)Lorg/h2/result/ResultInterface;
            astore 1 /* result */
        start local 1 // org.h2.result.ResultInterface result
         4: .line 862
            aload 1 /* result */
            invokeinterface org.h2.result.ResultInterface.next:()Z
            pop
         5: .line 863
            aload 1 /* result */
            invokeinterface org.h2.result.ResultInterface.currentRow:()[Lorg/h2/value/Value;
            iconst_0
            aaload
            invokevirtual org.h2.value.Value.getInt:()I
            istore 2 /* lockMode */
        start local 2 // int lockMode
         6: .line 864
            aload 1 /* result */
            invokeinterface org.h2.result.ResultInterface.close:()V
         7: .line 866
            iload 2 /* lockMode */
            tableswitch { // 0 - 3
                    0: 8
                    1: 12
                    2: 12
                    3: 10
              default: 14
          }
         8: .line 868
      StackMap locals: org.h2.result.ResultInterface int
      StackMap stack:
            iconst_1
            istore 3 /* transactionIsolationLevel */
        start local 3 // int transactionIsolationLevel
         9: .line 869
            goto 15
        end local 3 // int transactionIsolationLevel
        10: .line 871
      StackMap locals:
      StackMap stack:
            iconst_2
            istore 3 /* transactionIsolationLevel */
        start local 3 // int transactionIsolationLevel
        11: .line 872
            goto 15
        end local 3 // int transactionIsolationLevel
        12: .line 875
      StackMap locals:
      StackMap stack:
            bipush 8
            istore 3 /* transactionIsolationLevel */
        start local 3 // int transactionIsolationLevel
        13: .line 876
            goto 15
        end local 3 // int transactionIsolationLevel
        14: .line 878
      StackMap locals:
      StackMap stack:
            new java.lang.StringBuilder
            dup
            ldc "lockMode:"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 2 /* lockMode */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokestatic org.h2.message.DbException.throwInternalError:(Ljava/lang/String;)Ljava/lang/RuntimeException;
            athrow
        start local 3 // int transactionIsolationLevel
        15: .line 880
      StackMap locals: int
      StackMap stack:
            iload 3 /* transactionIsolationLevel */
        16: ireturn
        end local 3 // int transactionIsolationLevel
        end local 2 // int lockMode
        end local 1 // org.h2.result.ResultInterface result
        17: .line 881
      StackMap locals: org.h2.jdbc.JdbcConnection
      StackMap stack: java.lang.Exception
            astore 1 /* e */
        start local 1 // java.lang.Exception e
        18: .line 882
            aload 0 /* this */
            aload 1 /* e */
            invokevirtual org.h2.jdbc.JdbcConnection.logAndConvert:(Ljava/lang/Throwable;)Ljava/sql/SQLException;
            athrow
        end local 1 // java.lang.Exception e
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot                       Name  Signature
            0   19     0                       this  Lorg/h2/jdbc/JdbcConnection;
            4   17     1                     result  Lorg/h2/result/ResultInterface;
            6   17     2                   lockMode  I
            9   10     3  transactionIsolationLevel  I
           11   12     3  transactionIsolationLevel  I
           13   14     3  transactionIsolationLevel  I
           15   17     3  transactionIsolationLevel  I
           18   19     1                          e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           0    16      17  Class java.lang.Exception
    Exceptions:
      throws java.sql.SQLException

  public void setHoldability(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // org.h2.jdbc.JdbcConnection this
        start local 1 // int holdability
         0: .line 897
            aload 0 /* this */
            ldc "setHoldability"
            iload 1 /* holdability */
            i2l
            invokevirtual org.h2.jdbc.JdbcConnection.debugCodeCall:(Ljava/lang/String;J)V
         1: .line 898
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.checkClosed:()V
         2: .line 899
            iload 1 /* holdability */
            invokestatic org.h2.jdbc.JdbcConnection.checkHoldability:(I)V
         3: .line 900
            aload 0 /* this */
            iload 1 /* holdability */
            putfield org.h2.jdbc.JdbcConnection.holdability:I
         4: .line 901
            goto 7
      StackMap locals:
      StackMap stack: java.lang.Exception
         5: astore 2 /* e */
        start local 2 // java.lang.Exception e
         6: .line 902
            aload 0 /* this */
            aload 2 /* e */
            invokevirtual org.h2.jdbc.JdbcConnection.logAndConvert:(Ljava/lang/Throwable;)Ljava/sql/SQLException;
            athrow
        end local 2 // java.lang.Exception e
         7: .line 904
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int holdability
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    8     0         this  Lorg/h2/jdbc/JdbcConnection;
            0    8     1  holdability  I
            6    7     2            e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           0     4       5  Class java.lang.Exception
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
             Name  Flags
      holdability  

  public int getHoldability();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.h2.jdbc.JdbcConnection this
         0: .line 915
            aload 0 /* this */
            ldc "getHoldability"
            invokevirtual org.h2.jdbc.JdbcConnection.debugCodeCall:(Ljava/lang/String;)V
         1: .line 916
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.checkClosed:()V
         2: .line 917
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.holdability:I
         3: ireturn
         4: .line 918
      StackMap locals:
      StackMap stack: java.lang.Exception
            astore 1 /* e */
        start local 1 // java.lang.Exception e
         5: .line 919
            aload 0 /* this */
            aload 1 /* e */
            invokevirtual org.h2.jdbc.JdbcConnection.logAndConvert:(Ljava/lang/Throwable;)Ljava/sql/SQLException;
            athrow
        end local 1 // java.lang.Exception e
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/h2/jdbc/JdbcConnection;
            5    6     1     e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           0     3       4  Class java.lang.Exception
    Exceptions:
      throws java.sql.SQLException

  public java.util.Map<java.lang.String, java.lang.Class<?>> getTypeMap();
    descriptor: ()Ljava/util/Map;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.h2.jdbc.JdbcConnection this
         0: .line 932
            aload 0 /* this */
            ldc "getTypeMap"
            invokevirtual org.h2.jdbc.JdbcConnection.debugCodeCall:(Ljava/lang/String;)V
         1: .line 933
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.checkClosed:()V
         2: .line 934
            aconst_null
            areturn
         3: .line 935
      StackMap locals:
      StackMap stack: java.lang.Exception
            astore 1 /* e */
        start local 1 // java.lang.Exception e
         4: .line 936
            aload 0 /* this */
            aload 1 /* e */
            invokevirtual org.h2.jdbc.JdbcConnection.logAndConvert:(Ljava/lang/Throwable;)Ljava/sql/SQLException;
            athrow
        end local 1 // java.lang.Exception e
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/h2/jdbc/JdbcConnection;
            4    5     1     e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           0     2       3  Class java.lang.Exception
    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=4, locals=3, args_size=2
        start local 0 // org.h2.jdbc.JdbcConnection this
        start local 1 // java.util.Map map
         0: .line 947
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.isDebugEnabled:()Z
            ifeq 2
         1: .line 948
            aload 0 /* this */
            new java.lang.StringBuilder
            dup
            ldc "setTypeMap("
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* map */
            invokestatic org.h2.jdbc.JdbcConnection.quoteMap:(Ljava/util/Map;)Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc ");"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual org.h2.jdbc.JdbcConnection.debugCode:(Ljava/lang/String;)V
         2: .line 950
      StackMap locals:
      StackMap stack:
            aload 1 /* map */
            invokestatic org.h2.jdbc.JdbcConnection.checkMap:(Ljava/util/Map;)V
         3: .line 951
            goto 6
      StackMap locals:
      StackMap stack: java.lang.Exception
         4: astore 2 /* e */
        start local 2 // java.lang.Exception e
         5: .line 952
            aload 0 /* this */
            aload 2 /* e */
            invokevirtual org.h2.jdbc.JdbcConnection.logAndConvert:(Ljava/lang/Throwable;)Ljava/sql/SQLException;
            athrow
        end local 2 // java.lang.Exception e
         6: .line 954
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.util.Map map
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/h2/jdbc/JdbcConnection;
            0    7     1   map  Ljava/util/Map<Ljava/lang/String;Ljava/lang/Class<*>;>;
            5    6     2     e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           0     3       4  Class java.lang.Exception
    Exceptions:
      throws java.sql.SQLException
    Signature: (Ljava/util/Map<Ljava/lang/String;Ljava/lang/Class<*>;>;)V
    MethodParameters:
      Name  Flags
      map   

  public java.sql.CallableStatement prepareCall(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/sql/CallableStatement;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=3, args_size=2
        start local 0 // org.h2.jdbc.JdbcConnection this
        start local 1 // java.lang.String sql
         0: .line 967
            iconst_0
            invokestatic org.h2.jdbc.JdbcConnection.getNextId:(I)I
            istore 2 /* id */
        start local 2 // int id
         1: .line 968
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.isDebugEnabled:()Z
            ifeq 6
         2: .line 969
            aload 0 /* this */
            ldc "CallableStatement"
         3: .line 970
            iconst_0
            iload 2 /* id */
         4: .line 971
            new java.lang.StringBuilder
            dup
            ldc "prepareCall("
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* sql */
            invokestatic org.h2.jdbc.JdbcConnection.quote:(Ljava/lang/String;)Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc ")"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         5: .line 969
            invokevirtual org.h2.jdbc.JdbcConnection.debugCodeAssign:(Ljava/lang/String;IILjava/lang/String;)V
         6: .line 973
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.checkClosed:()V
         7: .line 974
            aload 1 /* sql */
            invokestatic org.h2.jdbc.JdbcConnection.translateSQL:(Ljava/lang/String;)Ljava/lang/String;
            astore 1 /* sql */
         8: .line 975
            new org.h2.jdbc.JdbcCallableStatement
            dup
            aload 0 /* this */
            aload 1 /* sql */
            iload 2 /* id */
         9: .line 976
            sipush 1003
        10: .line 977
            sipush 1007
        11: .line 975
            invokespecial org.h2.jdbc.JdbcCallableStatement.<init>:(Lorg/h2/jdbc/JdbcConnection;Ljava/lang/String;III)V
        12: areturn
        end local 2 // int id
        13: .line 978
      StackMap locals: org.h2.jdbc.JdbcConnection java.lang.String
      StackMap stack: java.lang.Exception
            astore 2 /* e */
        start local 2 // java.lang.Exception e
        14: .line 979
            aload 0 /* this */
            aload 2 /* e */
            invokevirtual org.h2.jdbc.JdbcConnection.logAndConvert:(Ljava/lang/Throwable;)Ljava/sql/SQLException;
            athrow
        end local 2 // java.lang.Exception e
        end local 1 // java.lang.String sql
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   15     0  this  Lorg/h2/jdbc/JdbcConnection;
            0   15     1   sql  Ljava/lang/String;
            1   13     2    id  I
           14   15     2     e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           0    12      13  Class java.lang.Exception
    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.h2.jdbc.JdbcConnection this
        start local 1 // java.lang.String sql
        start local 2 // int resultSetType
        start local 3 // int resultSetConcurrency
         0: .line 998
            iconst_0
            invokestatic org.h2.jdbc.JdbcConnection.getNextId:(I)I
            istore 4 /* id */
        start local 4 // int id
         1: .line 999
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.isDebugEnabled:()Z
            ifeq 8
         2: .line 1000
            aload 0 /* this */
            ldc "CallableStatement"
         3: .line 1001
            iconst_0
            iload 4 /* id */
         4: .line 1002
            new java.lang.StringBuilder
            dup
            ldc "prepareCall("
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* sql */
            invokestatic org.h2.jdbc.JdbcConnection.quote:(Ljava/lang/String;)Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc ", "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            iload 2 /* resultSetType */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
         5: .line 1003
            ldc ", "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            iload 3 /* resultSetConcurrency */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ")"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         6: .line 1002
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         7: .line 1000
            invokevirtual org.h2.jdbc.JdbcConnection.debugCodeAssign:(Ljava/lang/String;IILjava/lang/String;)V
         8: .line 1005
      StackMap locals: int
      StackMap stack:
            iload 2 /* resultSetType */
            iload 3 /* resultSetConcurrency */
            invokestatic org.h2.jdbc.JdbcConnection.checkTypeConcurrency:(II)V
         9: .line 1006
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.checkClosed:()V
        10: .line 1007
            aload 1 /* sql */
            invokestatic org.h2.jdbc.JdbcConnection.translateSQL:(Ljava/lang/String;)Ljava/lang/String;
            astore 1 /* sql */
        11: .line 1008
            new org.h2.jdbc.JdbcCallableStatement
            dup
            aload 0 /* this */
            aload 1 /* sql */
            iload 4 /* id */
            iload 2 /* resultSetType */
        12: .line 1009
            iload 3 /* resultSetConcurrency */
        13: .line 1008
            invokespecial org.h2.jdbc.JdbcCallableStatement.<init>:(Lorg/h2/jdbc/JdbcConnection;Ljava/lang/String;III)V
        14: areturn
        end local 4 // int id
        15: .line 1010
      StackMap locals: org.h2.jdbc.JdbcConnection java.lang.String int int
      StackMap stack: java.lang.Exception
            astore 4 /* e */
        start local 4 // java.lang.Exception e
        16: .line 1011
            aload 0 /* this */
            aload 4 /* e */
            invokevirtual org.h2.jdbc.JdbcConnection.logAndConvert:(Ljava/lang/Throwable;)Ljava/sql/SQLException;
            athrow
        end local 4 // java.lang.Exception e
        end local 3 // int resultSetConcurrency
        end local 2 // int resultSetType
        end local 1 // java.lang.String sql
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0   17     0                  this  Lorg/h2/jdbc/JdbcConnection;
            0   17     1                   sql  Ljava/lang/String;
            0   17     2         resultSetType  I
            0   17     3  resultSetConcurrency  I
            1   15     4                    id  I
           16   17     4                     e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           0    14      15  Class java.lang.Exception
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
                      Name  Flags
      sql                   
      resultSetType         
      resultSetConcurrency  

  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=7, locals=6, args_size=5
        start local 0 // org.h2.jdbc.JdbcConnection 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 1032
            iconst_0
            invokestatic org.h2.jdbc.JdbcConnection.getNextId:(I)I
            istore 5 /* id */
        start local 5 // int id
         1: .line 1033
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.isDebugEnabled:()Z
            ifeq 9
         2: .line 1034
            aload 0 /* this */
            ldc "CallableStatement"
         3: .line 1035
            iconst_0
            iload 5 /* id */
         4: .line 1036
            new java.lang.StringBuilder
            dup
            ldc "prepareCall("
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* sql */
            invokestatic org.h2.jdbc.JdbcConnection.quote:(Ljava/lang/String;)Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc ", "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            iload 2 /* resultSetType */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
         5: .line 1037
            ldc ", "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            iload 3 /* resultSetConcurrency */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ", "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         6: .line 1038
            iload 4 /* resultSetHoldability */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ")"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         7: .line 1036
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         8: .line 1034
            invokevirtual org.h2.jdbc.JdbcConnection.debugCodeAssign:(Ljava/lang/String;IILjava/lang/String;)V
         9: .line 1040
      StackMap locals: int
      StackMap stack:
            iload 2 /* resultSetType */
            iload 3 /* resultSetConcurrency */
            invokestatic org.h2.jdbc.JdbcConnection.checkTypeConcurrency:(II)V
        10: .line 1041
            iload 4 /* resultSetHoldability */
            invokestatic org.h2.jdbc.JdbcConnection.checkHoldability:(I)V
        11: .line 1042
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.checkClosed:()V
        12: .line 1043
            aload 1 /* sql */
            invokestatic org.h2.jdbc.JdbcConnection.translateSQL:(Ljava/lang/String;)Ljava/lang/String;
            astore 1 /* sql */
        13: .line 1044
            new org.h2.jdbc.JdbcCallableStatement
            dup
            aload 0 /* this */
            aload 1 /* sql */
            iload 5 /* id */
            iload 2 /* resultSetType */
        14: .line 1045
            iload 3 /* resultSetConcurrency */
        15: .line 1044
            invokespecial org.h2.jdbc.JdbcCallableStatement.<init>:(Lorg/h2/jdbc/JdbcConnection;Ljava/lang/String;III)V
        16: areturn
        end local 5 // int id
        17: .line 1046
      StackMap locals: org.h2.jdbc.JdbcConnection java.lang.String int int int
      StackMap stack: java.lang.Exception
            astore 5 /* e */
        start local 5 // java.lang.Exception e
        18: .line 1047
            aload 0 /* this */
            aload 5 /* e */
            invokevirtual org.h2.jdbc.JdbcConnection.logAndConvert:(Ljava/lang/Throwable;)Ljava/sql/SQLException;
            athrow
        end local 5 // java.lang.Exception 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.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0   19     0                  this  Lorg/h2/jdbc/JdbcConnection;
            0   19     1                   sql  Ljava/lang/String;
            0   19     2         resultSetType  I
            0   19     3  resultSetConcurrency  I
            0   19     4  resultSetHoldability  I
            1   17     5                    id  I
           18   19     5                     e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           0    16      17  Class java.lang.Exception
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
                      Name  Flags
      sql                   
      resultSetType         
      resultSetConcurrency  
      resultSetHoldability  

  public java.sql.Savepoint setSavepoint();
    descriptor: ()Ljava/sql/Savepoint;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=4, args_size=1
        start local 0 // org.h2.jdbc.JdbcConnection this
         0: .line 1059
            bipush 6
            invokestatic org.h2.jdbc.JdbcConnection.getNextId:(I)I
            istore 1 /* id */
        start local 1 // int id
         1: .line 1060
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.isDebugEnabled:()Z
            ifeq 5
         2: .line 1061
            aload 0 /* this */
            ldc "Savepoint"
            bipush 6
            iload 1 /* id */
         3: .line 1062
            ldc "setSavepoint()"
         4: .line 1061
            invokevirtual org.h2.jdbc.JdbcConnection.debugCodeAssign:(Ljava/lang/String;IILjava/lang/String;)V
         5: .line 1064
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.checkClosed:()V
         6: .line 1065
            aload 0 /* this */
         7: .line 1066
            new java.lang.StringBuilder
            dup
            ldc "SAVEPOINT "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aconst_null
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.savepointId:I
            invokestatic org.h2.jdbc.JdbcSavepoint.getName:(Ljava/lang/String;I)Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         8: .line 1067
            ldc 2147483647
         9: .line 1065
            invokevirtual org.h2.jdbc.JdbcConnection.prepareCommand:(Ljava/lang/String;I)Lorg/h2/command/CommandInterface;
            astore 2 /* set */
        start local 2 // org.h2.command.CommandInterface set
        10: .line 1068
            aload 2 /* set */
            iconst_0
            invokestatic java.lang.Boolean.valueOf:(Z)Ljava/lang/Boolean;
            invokeinterface org.h2.command.CommandInterface.executeUpdate:(Ljava/lang/Object;)Lorg/h2/result/ResultWithGeneratedKeys;
            pop
        11: .line 1069
            new org.h2.jdbc.JdbcSavepoint
            dup
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.savepointId:I
            aconst_null
        12: .line 1070
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.trace:Lorg/h2/message/Trace;
            iload 1 /* id */
        13: .line 1069
            invokespecial org.h2.jdbc.JdbcSavepoint.<init>:(Lorg/h2/jdbc/JdbcConnection;ILjava/lang/String;Lorg/h2/message/Trace;I)V
            astore 3 /* savepoint */
        start local 3 // org.h2.jdbc.JdbcSavepoint savepoint
        14: .line 1071
            aload 0 /* this */
            dup
            getfield org.h2.jdbc.JdbcConnection.savepointId:I
            iconst_1
            iadd
            putfield org.h2.jdbc.JdbcConnection.savepointId:I
        15: .line 1072
            aload 3 /* savepoint */
        16: areturn
        end local 3 // org.h2.jdbc.JdbcSavepoint savepoint
        end local 2 // org.h2.command.CommandInterface set
        end local 1 // int id
        17: .line 1073
      StackMap locals: org.h2.jdbc.JdbcConnection
      StackMap stack: java.lang.Exception
            astore 1 /* e */
        start local 1 // java.lang.Exception e
        18: .line 1074
            aload 0 /* this */
            aload 1 /* e */
            invokevirtual org.h2.jdbc.JdbcConnection.logAndConvert:(Ljava/lang/Throwable;)Ljava/sql/SQLException;
            athrow
        end local 1 // java.lang.Exception e
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   19     0       this  Lorg/h2/jdbc/JdbcConnection;
            1   17     1         id  I
           10   17     2        set  Lorg/h2/command/CommandInterface;
           14   17     3  savepoint  Lorg/h2/jdbc/JdbcSavepoint;
           18   19     1          e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           0    16      17  Class java.lang.Exception
    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=7, locals=4, args_size=2
        start local 0 // org.h2.jdbc.JdbcConnection this
        start local 1 // java.lang.String name
         0: .line 1087
            bipush 6
            invokestatic org.h2.jdbc.JdbcConnection.getNextId:(I)I
            istore 2 /* id */
        start local 2 // int id
         1: .line 1088
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.isDebugEnabled:()Z
            ifeq 5
         2: .line 1089
            aload 0 /* this */
            ldc "Savepoint"
            bipush 6
            iload 2 /* id */
         3: .line 1090
            new java.lang.StringBuilder
            dup
            ldc "setSavepoint("
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* name */
            invokestatic org.h2.jdbc.JdbcConnection.quote:(Ljava/lang/String;)Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc ")"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         4: .line 1089
            invokevirtual org.h2.jdbc.JdbcConnection.debugCodeAssign:(Ljava/lang/String;IILjava/lang/String;)V
         5: .line 1092
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.checkClosed:()V
         6: .line 1093
            aload 0 /* this */
         7: .line 1094
            new java.lang.StringBuilder
            dup
            ldc "SAVEPOINT "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* name */
            iconst_0
            invokestatic org.h2.jdbc.JdbcSavepoint.getName:(Ljava/lang/String;I)Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         8: .line 1095
            ldc 2147483647
         9: .line 1093
            invokevirtual org.h2.jdbc.JdbcConnection.prepareCommand:(Ljava/lang/String;I)Lorg/h2/command/CommandInterface;
            astore 3 /* set */
        start local 3 // org.h2.command.CommandInterface set
        10: .line 1096
            aload 3 /* set */
            iconst_0
            invokestatic java.lang.Boolean.valueOf:(Z)Ljava/lang/Boolean;
            invokeinterface org.h2.command.CommandInterface.executeUpdate:(Ljava/lang/Object;)Lorg/h2/result/ResultWithGeneratedKeys;
            pop
        11: .line 1097
            new org.h2.jdbc.JdbcSavepoint
            dup
            aload 0 /* this */
            iconst_0
            aload 1 /* name */
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.trace:Lorg/h2/message/Trace;
        12: .line 1098
            iload 2 /* id */
        13: .line 1097
            invokespecial org.h2.jdbc.JdbcSavepoint.<init>:(Lorg/h2/jdbc/JdbcConnection;ILjava/lang/String;Lorg/h2/message/Trace;I)V
        14: areturn
        end local 3 // org.h2.command.CommandInterface set
        end local 2 // int id
        15: .line 1099
      StackMap locals: org.h2.jdbc.JdbcConnection java.lang.String
      StackMap stack: java.lang.Exception
            astore 2 /* e */
        start local 2 // java.lang.Exception e
        16: .line 1100
            aload 0 /* this */
            aload 2 /* e */
            invokevirtual org.h2.jdbc.JdbcConnection.logAndConvert:(Ljava/lang/Throwable;)Ljava/sql/SQLException;
            athrow
        end local 2 // java.lang.Exception e
        end local 1 // java.lang.String name
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   17     0  this  Lorg/h2/jdbc/JdbcConnection;
            0   17     1  name  Ljava/lang/String;
            1   15     2    id  I
           10   15     3   set  Lorg/h2/command/CommandInterface;
           16   17     2     e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           0    14      15  Class java.lang.Exception
    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=4, locals=4, args_size=2
        start local 0 // org.h2.jdbc.JdbcConnection this
        start local 1 // java.sql.Savepoint savepoint
         0: .line 1112
            aload 1 /* savepoint */
            invokestatic org.h2.jdbc.JdbcConnection.convertSavepoint:(Ljava/sql/Savepoint;)Lorg/h2/jdbc/JdbcSavepoint;
            astore 2 /* sp */
        start local 2 // org.h2.jdbc.JdbcSavepoint sp
         1: .line 1113
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.isDebugEnabled:()Z
            ifeq 3
         2: .line 1114
            aload 0 /* this */
            new java.lang.StringBuilder
            dup
            ldc "rollback("
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 2 /* sp */
            invokevirtual org.h2.jdbc.JdbcSavepoint.getTraceObjectName:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc ");"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual org.h2.jdbc.JdbcConnection.debugCode:(Ljava/lang/String;)V
         3: .line 1116
      StackMap locals: org.h2.jdbc.JdbcSavepoint
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.checkClosedForWrite:()V
         4: .line 1118
            aload 2 /* sp */
            invokevirtual org.h2.jdbc.JdbcSavepoint.rollback:()V
         5: .line 1119
            goto 9
      StackMap locals:
      StackMap stack: java.lang.Throwable
         6: astore 3
         7: .line 1120
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.afterWriting:()V
         8: .line 1121
            aload 3
            athrow
         9: .line 1120
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.afterWriting:()V
        end local 2 // org.h2.jdbc.JdbcSavepoint sp
        10: .line 1122
            goto 13
      StackMap locals: org.h2.jdbc.JdbcConnection java.sql.Savepoint
      StackMap stack: java.lang.Exception
        11: astore 2 /* e */
        start local 2 // java.lang.Exception e
        12: .line 1123
            aload 0 /* this */
            aload 2 /* e */
            invokevirtual org.h2.jdbc.JdbcConnection.logAndConvert:(Ljava/lang/Throwable;)Ljava/sql/SQLException;
            athrow
        end local 2 // java.lang.Exception e
        13: .line 1125
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.sql.Savepoint savepoint
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   14     0       this  Lorg/h2/jdbc/JdbcConnection;
            0   14     1  savepoint  Ljava/sql/Savepoint;
            1   10     2         sp  Lorg/h2/jdbc/JdbcSavepoint;
           12   13     2          e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           4     6       6  any
           0    10      11  Class java.lang.Exception
    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.h2.jdbc.JdbcConnection this
        start local 1 // java.sql.Savepoint savepoint
         0: .line 1135
            aload 0 /* this */
            ldc "releaseSavepoint(savepoint);"
            invokevirtual org.h2.jdbc.JdbcConnection.debugCode:(Ljava/lang/String;)V
         1: .line 1136
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.checkClosed:()V
         2: .line 1137
            aload 1 /* savepoint */
            invokestatic org.h2.jdbc.JdbcConnection.convertSavepoint:(Ljava/sql/Savepoint;)Lorg/h2/jdbc/JdbcSavepoint;
            invokevirtual org.h2.jdbc.JdbcSavepoint.release:()V
         3: .line 1138
            goto 6
      StackMap locals:
      StackMap stack: java.lang.Exception
         4: astore 2 /* e */
        start local 2 // java.lang.Exception e
         5: .line 1139
            aload 0 /* this */
            aload 2 /* e */
            invokevirtual org.h2.jdbc.JdbcConnection.logAndConvert:(Ljava/lang/Throwable;)Ljava/sql/SQLException;
            athrow
        end local 2 // java.lang.Exception e
         6: .line 1141
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.sql.Savepoint savepoint
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    7     0       this  Lorg/h2/jdbc/JdbcConnection;
            0    7     1  savepoint  Ljava/sql/Savepoint;
            5    6     2          e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           0     3       4  Class java.lang.Exception
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
           Name  Flags
      savepoint  

  private static org.h2.jdbc.JdbcSavepoint convertSavepoint(java.sql.Savepoint);
    descriptor: (Ljava/sql/Savepoint;)Lorg/h2/jdbc/JdbcSavepoint;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.sql.Savepoint savepoint
         0: .line 1144
            aload 0 /* savepoint */
            instanceof org.h2.jdbc.JdbcSavepoint
            ifne 4
         1: .line 1145
            ldc 90063
         2: .line 1146
            aload 0 /* savepoint */
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
         3: .line 1145
            invokestatic org.h2.message.DbException.get:(ILjava/lang/String;)Lorg/h2/message/DbException;
            athrow
         4: .line 1148
      StackMap locals:
      StackMap stack:
            aload 0 /* savepoint */
            checkcast org.h2.jdbc.JdbcSavepoint
            areturn
        end local 0 // java.sql.Savepoint savepoint
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0  savepoint  Ljava/sql/Savepoint;
    MethodParameters:
           Name  Flags
      savepoint  

  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=9, locals=6, args_size=5
        start local 0 // org.h2.jdbc.JdbcConnection 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 1168
            iconst_3
            invokestatic org.h2.jdbc.JdbcConnection.getNextId:(I)I
            istore 5 /* id */
        start local 5 // int id
         1: .line 1169
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.isDebugEnabled:()Z
            ifeq 9
         2: .line 1170
            aload 0 /* this */
            ldc "PreparedStatement"
         3: .line 1171
            iconst_3
            iload 5 /* id */
         4: .line 1172
            new java.lang.StringBuilder
            dup
            ldc "prepareStatement("
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* sql */
            invokestatic org.h2.jdbc.JdbcConnection.quote:(Ljava/lang/String;)Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc ", "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            iload 2 /* resultSetType */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
         5: .line 1173
            ldc ", "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            iload 3 /* resultSetConcurrency */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ", "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         6: .line 1174
            iload 4 /* resultSetHoldability */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ")"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         7: .line 1172
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         8: .line 1170
            invokevirtual org.h2.jdbc.JdbcConnection.debugCodeAssign:(Ljava/lang/String;IILjava/lang/String;)V
         9: .line 1176
      StackMap locals: int
      StackMap stack:
            iload 2 /* resultSetType */
            iload 3 /* resultSetConcurrency */
            invokestatic org.h2.jdbc.JdbcConnection.checkTypeConcurrency:(II)V
        10: .line 1177
            iload 4 /* resultSetHoldability */
            invokestatic org.h2.jdbc.JdbcConnection.checkHoldability:(I)V
        11: .line 1178
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.checkClosed:()V
        12: .line 1179
            aload 1 /* sql */
            invokestatic org.h2.jdbc.JdbcConnection.translateSQL:(Ljava/lang/String;)Ljava/lang/String;
            astore 1 /* sql */
        13: .line 1180
            new org.h2.jdbc.JdbcPreparedStatement
            dup
            aload 0 /* this */
            aload 1 /* sql */
            iload 5 /* id */
            iload 2 /* resultSetType */
        14: .line 1181
            iload 3 /* resultSetConcurrency */
            iconst_0
            iconst_0
            invokestatic java.lang.Boolean.valueOf:(Z)Ljava/lang/Boolean;
        15: .line 1180
            invokespecial org.h2.jdbc.JdbcPreparedStatement.<init>:(Lorg/h2/jdbc/JdbcConnection;Ljava/lang/String;IIIZLjava/lang/Object;)V
        16: areturn
        end local 5 // int id
        17: .line 1182
      StackMap locals: org.h2.jdbc.JdbcConnection java.lang.String int int int
      StackMap stack: java.lang.Exception
            astore 5 /* e */
        start local 5 // java.lang.Exception e
        18: .line 1183
            aload 0 /* this */
            aload 5 /* e */
            invokevirtual org.h2.jdbc.JdbcConnection.logAndConvert:(Ljava/lang/Throwable;)Ljava/sql/SQLException;
            athrow
        end local 5 // java.lang.Exception 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.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0   19     0                  this  Lorg/h2/jdbc/JdbcConnection;
            0   19     1                   sql  Ljava/lang/String;
            0   19     2         resultSetType  I
            0   19     3  resultSetConcurrency  I
            0   19     4  resultSetHoldability  I
            1   17     5                    id  I
           18   19     5                     e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           0    16      17  Class java.lang.Exception
    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=10, locals=4, args_size=3
        start local 0 // org.h2.jdbc.JdbcConnection this
        start local 1 // java.lang.String sql
        start local 2 // int autoGeneratedKeys
         0: .line 1202
            iconst_3
            invokestatic org.h2.jdbc.JdbcConnection.getNextId:(I)I
            istore 3 /* id */
        start local 3 // int id
         1: .line 1203
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.isDebugEnabled:()Z
            ifeq 8
         2: .line 1204
            aload 0 /* this */
            ldc "PreparedStatement"
         3: .line 1205
            iconst_3
            iload 3 /* id */
         4: .line 1206
            new java.lang.StringBuilder
            dup
            ldc "prepareStatement("
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* sql */
            invokestatic org.h2.jdbc.JdbcConnection.quote:(Ljava/lang/String;)Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc ", "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         5: .line 1207
            iload 2 /* autoGeneratedKeys */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ");"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         6: .line 1206
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         7: .line 1204
            invokevirtual org.h2.jdbc.JdbcConnection.debugCodeAssign:(Ljava/lang/String;IILjava/lang/String;)V
         8: .line 1209
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.checkClosed:()V
         9: .line 1210
            aload 1 /* sql */
            invokestatic org.h2.jdbc.JdbcConnection.translateSQL:(Ljava/lang/String;)Ljava/lang/String;
            astore 1 /* sql */
        10: .line 1211
            new org.h2.jdbc.JdbcPreparedStatement
            dup
            aload 0 /* this */
            aload 1 /* sql */
            iload 3 /* id */
        11: .line 1212
            sipush 1003
        12: .line 1213
            sipush 1007
            iconst_0
        13: .line 1214
            iload 2 /* autoGeneratedKeys */
            iconst_1
            if_icmpne 14
            iconst_1
            goto 15
      StackMap locals: org.h2.jdbc.JdbcConnection java.lang.String int int
      StackMap stack: new 10 new 10 org.h2.jdbc.JdbcConnection java.lang.String int int int int
        14: iconst_0
      StackMap locals: org.h2.jdbc.JdbcConnection java.lang.String int int
      StackMap stack: new 10 new 10 org.h2.jdbc.JdbcConnection java.lang.String int int int int int
        15: invokestatic java.lang.Boolean.valueOf:(Z)Ljava/lang/Boolean;
        16: .line 1211
            invokespecial org.h2.jdbc.JdbcPreparedStatement.<init>:(Lorg/h2/jdbc/JdbcConnection;Ljava/lang/String;IIIZLjava/lang/Object;)V
        17: areturn
        end local 3 // int id
        18: .line 1215
      StackMap locals: org.h2.jdbc.JdbcConnection java.lang.String int
      StackMap stack: java.lang.Exception
            astore 3 /* e */
        start local 3 // java.lang.Exception e
        19: .line 1216
            aload 0 /* this */
            aload 3 /* e */
            invokevirtual org.h2.jdbc.JdbcConnection.logAndConvert:(Ljava/lang/Throwable;)Ljava/sql/SQLException;
            athrow
        end local 3 // java.lang.Exception e
        end local 2 // int autoGeneratedKeys
        end local 1 // java.lang.String sql
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0   20     0               this  Lorg/h2/jdbc/JdbcConnection;
            0   20     1                sql  Ljava/lang/String;
            0   20     2  autoGeneratedKeys  I
            1   18     3                 id  I
           19   20     3                  e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           0    17      18  Class java.lang.Exception
    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=9, locals=4, args_size=3
        start local 0 // org.h2.jdbc.JdbcConnection this
        start local 1 // java.lang.String sql
        start local 2 // int[] columnIndexes
         0: .line 1234
            iconst_3
            invokestatic org.h2.jdbc.JdbcConnection.getNextId:(I)I
            istore 3 /* id */
        start local 3 // int id
         1: .line 1235
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.isDebugEnabled:()Z
            ifeq 8
         2: .line 1236
            aload 0 /* this */
            ldc "PreparedStatement"
         3: .line 1237
            iconst_3
            iload 3 /* id */
         4: .line 1238
            new java.lang.StringBuilder
            dup
            ldc "prepareStatement("
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* sql */
            invokestatic org.h2.jdbc.JdbcConnection.quote:(Ljava/lang/String;)Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc ", "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         5: .line 1239
            aload 2 /* columnIndexes */
            invokestatic org.h2.jdbc.JdbcConnection.quoteIntArray:([I)Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc ");"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         6: .line 1238
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         7: .line 1236
            invokevirtual org.h2.jdbc.JdbcConnection.debugCodeAssign:(Ljava/lang/String;IILjava/lang/String;)V
         8: .line 1241
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.checkClosed:()V
         9: .line 1242
            aload 1 /* sql */
            invokestatic org.h2.jdbc.JdbcConnection.translateSQL:(Ljava/lang/String;)Ljava/lang/String;
            astore 1 /* sql */
        10: .line 1243
            new org.h2.jdbc.JdbcPreparedStatement
            dup
            aload 0 /* this */
            aload 1 /* sql */
            iload 3 /* id */
        11: .line 1244
            sipush 1003
        12: .line 1245
            sipush 1007
            iconst_0
            aload 2 /* columnIndexes */
        13: .line 1243
            invokespecial org.h2.jdbc.JdbcPreparedStatement.<init>:(Lorg/h2/jdbc/JdbcConnection;Ljava/lang/String;IIIZLjava/lang/Object;)V
        14: areturn
        end local 3 // int id
        15: .line 1246
      StackMap locals: org.h2.jdbc.JdbcConnection java.lang.String int[]
      StackMap stack: java.lang.Exception
            astore 3 /* e */
        start local 3 // java.lang.Exception e
        16: .line 1247
            aload 0 /* this */
            aload 3 /* e */
            invokevirtual org.h2.jdbc.JdbcConnection.logAndConvert:(Ljava/lang/Throwable;)Ljava/sql/SQLException;
            athrow
        end local 3 // java.lang.Exception e
        end local 2 // int[] columnIndexes
        end local 1 // java.lang.String sql
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   17     0           this  Lorg/h2/jdbc/JdbcConnection;
            0   17     1            sql  Ljava/lang/String;
            0   17     2  columnIndexes  [I
            1   15     3             id  I
           16   17     3              e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           0    14      15  Class java.lang.Exception
    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=9, locals=4, args_size=3
        start local 0 // org.h2.jdbc.JdbcConnection this
        start local 1 // java.lang.String sql
        start local 2 // java.lang.String[] columnNames
         0: .line 1265
            iconst_3
            invokestatic org.h2.jdbc.JdbcConnection.getNextId:(I)I
            istore 3 /* id */
        start local 3 // int id
         1: .line 1266
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.isDebugEnabled:()Z
            ifeq 8
         2: .line 1267
            aload 0 /* this */
            ldc "PreparedStatement"
         3: .line 1268
            iconst_3
            iload 3 /* id */
         4: .line 1269
            new java.lang.StringBuilder
            dup
            ldc "prepareStatement("
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* sql */
            invokestatic org.h2.jdbc.JdbcConnection.quote:(Ljava/lang/String;)Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc ", "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         5: .line 1270
            aload 2 /* columnNames */
            invokestatic org.h2.jdbc.JdbcConnection.quoteArray:([Ljava/lang/String;)Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc ");"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         6: .line 1269
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         7: .line 1267
            invokevirtual org.h2.jdbc.JdbcConnection.debugCodeAssign:(Ljava/lang/String;IILjava/lang/String;)V
         8: .line 1272
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.checkClosed:()V
         9: .line 1273
            aload 1 /* sql */
            invokestatic org.h2.jdbc.JdbcConnection.translateSQL:(Ljava/lang/String;)Ljava/lang/String;
            astore 1 /* sql */
        10: .line 1274
            new org.h2.jdbc.JdbcPreparedStatement
            dup
            aload 0 /* this */
            aload 1 /* sql */
            iload 3 /* id */
        11: .line 1275
            sipush 1003
        12: .line 1276
            sipush 1007
            iconst_0
            aload 2 /* columnNames */
        13: .line 1274
            invokespecial org.h2.jdbc.JdbcPreparedStatement.<init>:(Lorg/h2/jdbc/JdbcConnection;Ljava/lang/String;IIIZLjava/lang/Object;)V
        14: areturn
        end local 3 // int id
        15: .line 1277
      StackMap locals: org.h2.jdbc.JdbcConnection java.lang.String java.lang.String[]
      StackMap stack: java.lang.Exception
            astore 3 /* e */
        start local 3 // java.lang.Exception e
        16: .line 1278
            aload 0 /* this */
            aload 3 /* e */
            invokevirtual org.h2.jdbc.JdbcConnection.logAndConvert:(Ljava/lang/Throwable;)Ljava/sql/SQLException;
            athrow
        end local 3 // java.lang.Exception e
        end local 2 // java.lang.String[] columnNames
        end local 1 // java.lang.String sql
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   17     0         this  Lorg/h2/jdbc/JdbcConnection;
            0   17     1          sql  Ljava/lang/String;
            0   17     2  columnNames  [Ljava/lang/String;
            1   15     3           id  I
           16   17     3            e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           0    14      15  Class java.lang.Exception
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
             Name  Flags
      sql          
      columnNames  

  org.h2.command.CommandInterface prepareCommand(java.lang.String, int);
    descriptor: (Ljava/lang/String;I)Lorg/h2/command/CommandInterface;
    flags: (0x0000) 
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.h2.jdbc.JdbcConnection this
        start local 1 // java.lang.String sql
        start local 2 // int fetchSize
         0: .line 1292
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.session:Lorg/h2/engine/SessionInterface;
            aload 1 /* sql */
            iload 2 /* fetchSize */
            invokeinterface org.h2.engine.SessionInterface.prepareCommand:(Ljava/lang/String;I)Lorg/h2/command/CommandInterface;
            areturn
        end local 2 // int fetchSize
        end local 1 // java.lang.String sql
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/h2/jdbc/JdbcConnection;
            0    1     1        sql  Ljava/lang/String;
            0    1     2  fetchSize  I
    MethodParameters:
           Name  Flags
      sql        
      fetchSize  

  private org.h2.command.CommandInterface prepareCommand(java.lang.String, org.h2.command.CommandInterface);
    descriptor: (Ljava/lang/String;Lorg/h2/command/CommandInterface;)Lorg/h2/command/CommandInterface;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.h2.jdbc.JdbcConnection this
        start local 1 // java.lang.String sql
        start local 2 // org.h2.command.CommandInterface old
         0: .line 1296
            aload 2 /* old */
            ifnonnull 1
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.session:Lorg/h2/engine/SessionInterface;
            aload 1 /* sql */
            ldc 2147483647
            invokeinterface org.h2.engine.SessionInterface.prepareCommand:(Ljava/lang/String;I)Lorg/h2/command/CommandInterface;
            goto 2
         1: .line 1297
      StackMap locals:
      StackMap stack:
            aload 2 /* old */
         2: .line 1296
      StackMap locals:
      StackMap stack: org.h2.command.CommandInterface
            areturn
        end local 2 // org.h2.command.CommandInterface old
        end local 1 // java.lang.String sql
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/h2/jdbc/JdbcConnection;
            0    3     1   sql  Ljava/lang/String;
            0    3     2   old  Lorg/h2/command/CommandInterface;
    MethodParameters:
      Name  Flags
      sql   
      old   

  private static int translateGetEnd(java.lang.String, int, char);
    descriptor: (Ljava/lang/String;IC)I
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=4, locals=5, args_size=3
        start local 0 // java.lang.String sql
        start local 1 // int i
        start local 2 // char c
         0: .line 1301
            aload 0 /* sql */
            invokevirtual java.lang.String.length:()I
            istore 3 /* len */
        start local 3 // int len
         1: .line 1302
            iload 2 /* c */
            lookupswitch { // 5
                   34: 13
                   36: 2
                   39: 9
                   45: 30
                   47: 17
              default: 37
          }
         2: .line 1304
      StackMap locals: int
      StackMap stack:
            iload 1 /* i */
            iload 3 /* len */
            iconst_1
            isub
            if_icmpge 8
            aload 0 /* sql */
            iload 1 /* i */
            iconst_1
            iadd
            invokevirtual java.lang.String.charAt:(I)C
            bipush 36
            if_icmpne 8
         3: .line 1305
            iload 1 /* i */
            ifeq 4
            aload 0 /* sql */
            iload 1 /* i */
            iconst_1
            isub
            invokevirtual java.lang.String.charAt:(I)C
            bipush 32
            if_icmpgt 8
         4: .line 1306
      StackMap locals:
      StackMap stack:
            aload 0 /* sql */
            ldc "$$"
            iload 1 /* i */
            iconst_2
            iadd
            invokevirtual java.lang.String.indexOf:(Ljava/lang/String;I)I
            istore 4 /* j */
        start local 4 // int j
         5: .line 1307
            iload 4 /* j */
            ifge 7
         6: .line 1308
            aload 0 /* sql */
            iload 1 /* i */
            invokestatic org.h2.message.DbException.getSyntaxError:(Ljava/lang/String;I)Lorg/h2/message/DbException;
            athrow
         7: .line 1310
      StackMap locals: int
      StackMap stack:
            iload 4 /* j */
            iconst_1
            iadd
            ireturn
        end local 4 // int j
         8: .line 1312
      StackMap locals:
      StackMap stack:
            iload 1 /* i */
            ireturn
         9: .line 1315
      StackMap locals:
      StackMap stack:
            aload 0 /* sql */
            bipush 39
            iload 1 /* i */
            iconst_1
            iadd
            invokevirtual java.lang.String.indexOf:(II)I
            istore 4 /* j */
        start local 4 // int j
        10: .line 1316
            iload 4 /* j */
            ifge 12
        11: .line 1317
            aload 0 /* sql */
            iload 1 /* i */
            invokestatic org.h2.message.DbException.getSyntaxError:(Ljava/lang/String;I)Lorg/h2/message/DbException;
            athrow
        12: .line 1319
      StackMap locals: int
      StackMap stack:
            iload 4 /* j */
            ireturn
        end local 4 // int j
        13: .line 1322
      StackMap locals:
      StackMap stack:
            aload 0 /* sql */
            bipush 34
            iload 1 /* i */
            iconst_1
            iadd
            invokevirtual java.lang.String.indexOf:(II)I
            istore 4 /* j */
        start local 4 // int j
        14: .line 1323
            iload 4 /* j */
            ifge 16
        15: .line 1324
            aload 0 /* sql */
            iload 1 /* i */
            invokestatic org.h2.message.DbException.getSyntaxError:(Ljava/lang/String;I)Lorg/h2/message/DbException;
            athrow
        16: .line 1326
      StackMap locals: int
      StackMap stack:
            iload 4 /* j */
            ireturn
        end local 4 // int j
        17: .line 1329
      StackMap locals:
      StackMap stack:
            iload 1 /* i */
            iconst_1
            iadd
            iload 3 /* len */
            aload 0 /* sql */
            invokestatic org.h2.jdbc.JdbcConnection.checkRunOver:(IILjava/lang/String;)V
        18: .line 1330
            aload 0 /* sql */
            iload 1 /* i */
            iconst_1
            iadd
            invokevirtual java.lang.String.charAt:(I)C
            bipush 42
            if_icmpne 24
        19: .line 1332
            aload 0 /* sql */
            ldc "*/"
            iload 1 /* i */
            iconst_2
            iadd
            invokevirtual java.lang.String.indexOf:(Ljava/lang/String;I)I
            istore 4 /* j */
        start local 4 // int j
        20: .line 1333
            iload 4 /* j */
            ifge 22
        21: .line 1334
            aload 0 /* sql */
            iload 1 /* i */
            invokestatic org.h2.message.DbException.getSyntaxError:(Ljava/lang/String;I)Lorg/h2/message/DbException;
            athrow
        22: .line 1336
      StackMap locals: int
      StackMap stack:
            iload 4 /* j */
            iconst_1
            iadd
            istore 1 /* i */
        end local 4 // int j
        23: .line 1337
            goto 29
      StackMap locals:
      StackMap stack:
        24: aload 0 /* sql */
            iload 1 /* i */
            iconst_1
            iadd
            invokevirtual java.lang.String.charAt:(I)C
            bipush 47
            if_icmpne 29
        25: .line 1339
            iinc 1 /* i */ 2
        26: .line 1340
            goto 28
        27: .line 1341
      StackMap locals:
      StackMap stack:
            iinc 1 /* i */ 1
        28: .line 1340
      StackMap locals:
      StackMap stack:
            iload 1 /* i */
            iload 3 /* len */
            if_icmpge 29
            aload 0 /* sql */
            iload 1 /* i */
            invokevirtual java.lang.String.charAt:(I)C
            dup
            istore 2 /* c */
            bipush 13
            if_icmpeq 29
            iload 2 /* c */
            bipush 10
            if_icmpne 27
        29: .line 1344
      StackMap locals:
      StackMap stack:
            iload 1 /* i */
            ireturn
        30: .line 1347
      StackMap locals:
      StackMap stack:
            iload 1 /* i */
            iconst_1
            iadd
            iload 3 /* len */
            aload 0 /* sql */
            invokestatic org.h2.jdbc.JdbcConnection.checkRunOver:(IILjava/lang/String;)V
        31: .line 1348
            aload 0 /* sql */
            iload 1 /* i */
            iconst_1
            iadd
            invokevirtual java.lang.String.charAt:(I)C
            bipush 45
            if_icmpne 36
        32: .line 1350
            iinc 1 /* i */ 2
        33: .line 1351
            goto 35
        34: .line 1352
      StackMap locals:
      StackMap stack:
            iinc 1 /* i */ 1
        35: .line 1351
      StackMap locals:
      StackMap stack:
            iload 1 /* i */
            iload 3 /* len */
            if_icmpge 36
            aload 0 /* sql */
            iload 1 /* i */
            invokevirtual java.lang.String.charAt:(I)C
            dup
            istore 2 /* c */
            bipush 13
            if_icmpeq 36
            iload 2 /* c */
            bipush 10
            if_icmpne 34
        36: .line 1355
      StackMap locals:
      StackMap stack:
            iload 1 /* i */
            ireturn
        37: .line 1358
      StackMap locals:
      StackMap stack:
            new java.lang.StringBuilder
            dup
            ldc "c="
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 2 /* c */
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokestatic org.h2.message.DbException.throwInternalError:(Ljava/lang/String;)Ljava/lang/RuntimeException;
            athrow
        end local 3 // int len
        end local 2 // char c
        end local 1 // int i
        end local 0 // java.lang.String sql
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   38     0   sql  Ljava/lang/String;
            0   38     1     i  I
            0   38     2     c  C
            1   38     3   len  I
            5    8     4     j  I
           10   13     4     j  I
           14   17     4     j  I
           20   23     4     j  I
    MethodParameters:
      Name  Flags
      sql   
      i     
      c     

  private static java.lang.String translateSQL(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/lang/String;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.lang.String sql
         0: .line 1370
            aload 0 /* sql */
            iconst_1
            invokestatic org.h2.jdbc.JdbcConnection.translateSQL:(Ljava/lang/String;Z)Ljava/lang/String;
            areturn
        end local 0 // java.lang.String sql
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0   sql  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      sql   

  static java.lang.String translateSQL(java.lang.String, boolean);
    descriptor: (Ljava/lang/String;Z)Ljava/lang/String;
    flags: (0x0008) ACC_STATIC
    Code:
      stack=3, locals=9, args_size=2
        start local 0 // java.lang.String sql
        start local 1 // boolean escapeProcessing
         0: .line 1382
            aload 0 /* sql */
            ifnonnull 2
         1: .line 1383
            ldc "SQL"
            aconst_null
            invokestatic org.h2.message.DbException.getInvalidValueException:(Ljava/lang/String;Ljava/lang/Object;)Lorg/h2/message/DbException;
            athrow
         2: .line 1385
      StackMap locals:
      StackMap stack:
            iload 1 /* escapeProcessing */
            ifne 4
         3: .line 1386
            aload 0 /* sql */
            areturn
         4: .line 1388
      StackMap locals:
      StackMap stack:
            aload 0 /* sql */
            bipush 123
            invokevirtual java.lang.String.indexOf:(I)I
            ifge 6
         5: .line 1389
            aload 0 /* sql */
            areturn
         6: .line 1391
      StackMap locals:
      StackMap stack:
            aload 0 /* sql */
            invokevirtual java.lang.String.length:()I
            istore 2 /* len */
        start local 2 // int len
         7: .line 1392
            aconst_null
            astore 3 /* chars */
        start local 3 // char[] chars
         8: .line 1393
            iconst_0
            istore 4 /* level */
        start local 4 // int level
         9: .line 1394
            iconst_0
            istore 5 /* i */
        start local 5 // int i
        10: goto 85
        11: .line 1395
      StackMap locals: java.lang.String int int char[] int int
      StackMap stack:
            aload 0 /* sql */
            iload 5 /* i */
            invokevirtual java.lang.String.charAt:(I)C
            istore 6 /* c */
        start local 6 // char c
        12: .line 1396
            iload 6 /* c */
            lookupswitch { // 7
                   34: 13
                   36: 83
                   39: 13
                   45: 13
                   47: 13
                  123: 15
                  125: 79
              default: 84
          }
        13: .line 1401
      StackMap locals: int
      StackMap stack:
            aload 0 /* sql */
            iload 5 /* i */
            iload 6 /* c */
            invokestatic org.h2.jdbc.JdbcConnection.translateGetEnd:(Ljava/lang/String;IC)I
            istore 5 /* i */
        14: .line 1402
            goto 84
        15: .line 1404
      StackMap locals:
      StackMap stack:
            iinc 4 /* level */ 1
        16: .line 1405
            aload 3 /* chars */
            ifnonnull 18
        17: .line 1406
            aload 0 /* sql */
            invokevirtual java.lang.String.toCharArray:()[C
            astore 3 /* chars */
        18: .line 1408
      StackMap locals:
      StackMap stack:
            aload 3 /* chars */
            iload 5 /* i */
            bipush 32
            castore
        19: .line 1409
            goto 22
        20: .line 1410
      StackMap locals:
      StackMap stack:
            iinc 5 /* i */ 1
        21: .line 1411
            iload 5 /* i */
            iload 2 /* len */
            aload 0 /* sql */
            invokestatic org.h2.jdbc.JdbcConnection.checkRunOver:(IILjava/lang/String;)V
        22: .line 1409
      StackMap locals:
      StackMap stack:
            aload 3 /* chars */
            iload 5 /* i */
            caload
            invokestatic java.lang.Character.isSpaceChar:(C)Z
            ifne 20
        23: .line 1413
            iload 5 /* i */
            istore 7 /* start */
        start local 7 // int start
        24: .line 1414
            aload 3 /* chars */
            iload 5 /* i */
            caload
            bipush 48
            if_icmplt 36
            aload 3 /* chars */
            iload 5 /* i */
            caload
            bipush 57
            if_icmpgt 36
        25: .line 1415
            aload 3 /* chars */
            iload 5 /* i */
            iconst_1
            isub
            bipush 123
            castore
        26: .line 1417
      StackMap locals: int
      StackMap stack:
            iload 5 /* i */
            iload 2 /* len */
            aload 0 /* sql */
            invokestatic org.h2.jdbc.JdbcConnection.checkRunOver:(IILjava/lang/String;)V
        27: .line 1418
            aload 3 /* chars */
            iload 5 /* i */
            caload
            istore 6 /* c */
        28: .line 1419
            iload 6 /* c */
            bipush 125
            if_icmpne 30
        29: .line 1420
            goto 34
        30: .line 1422
      StackMap locals:
      StackMap stack:
            iload 6 /* c */
            lookupswitch { // 4
                   34: 31
                   39: 31
                   45: 31
                   47: 31
              default: 32
          }
        31: .line 1427
      StackMap locals:
      StackMap stack:
            aload 0 /* sql */
            iload 5 /* i */
            iload 6 /* c */
            invokestatic org.h2.jdbc.JdbcConnection.translateGetEnd:(Ljava/lang/String;IC)I
            istore 5 /* i */
        32: .line 1431
      StackMap locals:
      StackMap stack:
            iinc 5 /* i */ 1
        33: .line 1416
            goto 26
        34: .line 1433
      StackMap locals:
      StackMap stack:
            iinc 4 /* level */ -1
        35: .line 1434
            goto 84
        36: .line 1435
      StackMap locals:
      StackMap stack:
            aload 3 /* chars */
            iload 5 /* i */
            caload
            bipush 63
            if_icmpne 54
        37: .line 1436
            iinc 5 /* i */ 1
        38: .line 1437
            iload 5 /* i */
            iload 2 /* len */
            aload 0 /* sql */
            invokestatic org.h2.jdbc.JdbcConnection.checkRunOver:(IILjava/lang/String;)V
        39: .line 1438
            goto 42
        40: .line 1439
      StackMap locals:
      StackMap stack:
            iinc 5 /* i */ 1
        41: .line 1440
            iload 5 /* i */
            iload 2 /* len */
            aload 0 /* sql */
            invokestatic org.h2.jdbc.JdbcConnection.checkRunOver:(IILjava/lang/String;)V
        42: .line 1438
      StackMap locals:
      StackMap stack:
            aload 3 /* chars */
            iload 5 /* i */
            caload
            invokestatic java.lang.Character.isSpaceChar:(C)Z
            ifne 40
        43: .line 1442
            aload 0 /* sql */
            iload 5 /* i */
            invokevirtual java.lang.String.charAt:(I)C
            bipush 61
            if_icmpeq 45
        44: .line 1443
            aload 0 /* sql */
            iload 5 /* i */
            ldc "="
            invokestatic org.h2.message.DbException.getSyntaxError:(Ljava/lang/String;ILjava/lang/String;)Lorg/h2/message/DbException;
            athrow
        45: .line 1445
      StackMap locals:
      StackMap stack:
            iinc 5 /* i */ 1
        46: .line 1446
            iload 5 /* i */
            iload 2 /* len */
            aload 0 /* sql */
            invokestatic org.h2.jdbc.JdbcConnection.checkRunOver:(IILjava/lang/String;)V
        47: .line 1447
            goto 50
        48: .line 1448
      StackMap locals:
      StackMap stack:
            iinc 5 /* i */ 1
        49: .line 1449
            iload 5 /* i */
            iload 2 /* len */
            aload 0 /* sql */
            invokestatic org.h2.jdbc.JdbcConnection.checkRunOver:(IILjava/lang/String;)V
        50: .line 1447
      StackMap locals:
      StackMap stack:
            aload 3 /* chars */
            iload 5 /* i */
            caload
            invokestatic java.lang.Character.isSpaceChar:(C)Z
            ifne 48
        51: .line 1452
            goto 54
        52: .line 1453
      StackMap locals:
      StackMap stack:
            iinc 5 /* i */ 1
        53: .line 1454
            iload 5 /* i */
            iload 2 /* len */
            aload 0 /* sql */
            invokestatic org.h2.jdbc.JdbcConnection.checkRunOver:(IILjava/lang/String;)V
        54: .line 1452
      StackMap locals:
      StackMap stack:
            aload 3 /* chars */
            iload 5 /* i */
            caload
            invokestatic java.lang.Character.isSpaceChar:(C)Z
            ifeq 52
        55: .line 1456
            iconst_0
            istore 8 /* remove */
        start local 8 // int remove
        56: .line 1457
            aload 0 /* sql */
            iload 7 /* start */
            ldc "fn"
            invokestatic org.h2.jdbc.JdbcConnection.found:(Ljava/lang/String;ILjava/lang/String;)Z
            ifeq 59
        57: .line 1458
            iconst_2
            istore 8 /* remove */
        58: .line 1459
            goto 74
      StackMap locals: int
      StackMap stack:
        59: aload 0 /* sql */
            iload 7 /* start */
            ldc "escape"
            invokestatic org.h2.jdbc.JdbcConnection.found:(Ljava/lang/String;ILjava/lang/String;)Z
            ifeq 61
        60: .line 1460
            goto 84
        61: .line 1461
      StackMap locals:
      StackMap stack:
            aload 0 /* sql */
            iload 7 /* start */
            ldc "call"
            invokestatic org.h2.jdbc.JdbcConnection.found:(Ljava/lang/String;ILjava/lang/String;)Z
            ifeq 63
        62: .line 1462
            goto 84
        63: .line 1463
      StackMap locals:
      StackMap stack:
            aload 0 /* sql */
            iload 7 /* start */
            ldc "oj"
            invokestatic org.h2.jdbc.JdbcConnection.found:(Ljava/lang/String;ILjava/lang/String;)Z
            ifeq 66
        64: .line 1464
            iconst_2
            istore 8 /* remove */
        65: .line 1465
            goto 74
      StackMap locals:
      StackMap stack:
        66: aload 0 /* sql */
            iload 7 /* start */
            ldc "ts"
            invokestatic org.h2.jdbc.JdbcConnection.found:(Ljava/lang/String;ILjava/lang/String;)Z
            ifeq 68
        67: .line 1466
            goto 84
        68: .line 1467
      StackMap locals:
      StackMap stack:
            aload 0 /* sql */
            iload 7 /* start */
            ldc "t"
            invokestatic org.h2.jdbc.JdbcConnection.found:(Ljava/lang/String;ILjava/lang/String;)Z
            ifeq 70
        69: .line 1468
            goto 84
        70: .line 1469
      StackMap locals:
      StackMap stack:
            aload 0 /* sql */
            iload 7 /* start */
            ldc "d"
            invokestatic org.h2.jdbc.JdbcConnection.found:(Ljava/lang/String;ILjava/lang/String;)Z
            ifeq 72
        71: .line 1470
            goto 84
        72: .line 1471
      StackMap locals:
      StackMap stack:
            aload 0 /* sql */
            iload 7 /* start */
            ldc "params"
            invokestatic org.h2.jdbc.JdbcConnection.found:(Ljava/lang/String;ILjava/lang/String;)Z
            ifeq 74
        73: .line 1472
            ldc "params"
            invokevirtual java.lang.String.length:()I
            istore 8 /* remove */
        74: .line 1474
      StackMap locals:
      StackMap stack:
            iload 7 /* start */
            istore 5 /* i */
            goto 77
        75: .line 1475
      StackMap locals:
      StackMap stack:
            aload 3 /* chars */
            iload 5 /* i */
            bipush 32
            castore
        76: .line 1474
            iinc 5 /* i */ 1
            iinc 8 /* remove */ -1
      StackMap locals:
      StackMap stack:
        77: iload 8 /* remove */
            ifgt 75
        78: .line 1477
            goto 84
        end local 8 // int remove
        end local 7 // int start
        79: .line 1479
      StackMap locals:
      StackMap stack:
            iinc 4 /* level */ -1
            iload 4 /* level */
            ifge 81
        80: .line 1480
            aload 0 /* sql */
            iload 5 /* i */
            invokestatic org.h2.message.DbException.getSyntaxError:(Ljava/lang/String;I)Lorg/h2/message/DbException;
            athrow
        81: .line 1482
      StackMap locals:
      StackMap stack:
            aload 3 /* chars */
            iload 5 /* i */
            bipush 32
            castore
        82: .line 1483
            goto 84
        83: .line 1485
      StackMap locals:
      StackMap stack:
            aload 0 /* sql */
            iload 5 /* i */
            iload 6 /* c */
            invokestatic org.h2.jdbc.JdbcConnection.translateGetEnd:(Ljava/lang/String;IC)I
            istore 5 /* i */
        end local 6 // char c
        84: .line 1394
      StackMap locals:
      StackMap stack:
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
        85: iload 5 /* i */
            iload 2 /* len */
            if_icmplt 11
        end local 5 // int i
        86: .line 1490
            iload 4 /* level */
            ifeq 88
        87: .line 1491
            aload 0 /* sql */
            aload 0 /* sql */
            invokevirtual java.lang.String.length:()I
            iconst_1
            isub
            invokestatic org.h2.message.DbException.getSyntaxError:(Ljava/lang/String;I)Lorg/h2/message/DbException;
            athrow
        88: .line 1493
      StackMap locals:
      StackMap stack:
            aload 3 /* chars */
            ifnull 90
        89: .line 1494
            new java.lang.String
            dup
            aload 3 /* chars */
            invokespecial java.lang.String.<init>:([C)V
            astore 0 /* sql */
        90: .line 1496
      StackMap locals:
      StackMap stack:
            aload 0 /* sql */
            areturn
        end local 4 // int level
        end local 3 // char[] chars
        end local 2 // int len
        end local 1 // boolean escapeProcessing
        end local 0 // java.lang.String sql
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0   91     0               sql  Ljava/lang/String;
            0   91     1  escapeProcessing  Z
            7   91     2               len  I
            8   91     3             chars  [C
            9   91     4             level  I
           10   86     5                 i  I
           12   84     6                 c  C
           24   79     7             start  I
           56   79     8            remove  I
    MethodParameters:
                  Name  Flags
      sql               
      escapeProcessing  

  private static void checkRunOver(int, int, java.lang.String);
    descriptor: (IILjava/lang/String;)V
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // int i
        start local 1 // int len
        start local 2 // java.lang.String sql
         0: .line 1500
            iload 0 /* i */
            iload 1 /* len */
            if_icmplt 2
         1: .line 1501
            aload 2 /* sql */
            iload 0 /* i */
            invokestatic org.h2.message.DbException.getSyntaxError:(Ljava/lang/String;I)Lorg/h2/message/DbException;
            athrow
         2: .line 1503
      StackMap locals:
      StackMap stack:
            return
        end local 2 // java.lang.String sql
        end local 1 // int len
        end local 0 // int i
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0     i  I
            0    3     1   len  I
            0    3     2   sql  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      i     
      len   
      sql   

  private static boolean found(java.lang.String, int, java.lang.String);
    descriptor: (Ljava/lang/String;ILjava/lang/String;)Z
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=6, locals=3, args_size=3
        start local 0 // java.lang.String sql
        start local 1 // int start
        start local 2 // java.lang.String other
         0: .line 1506
            aload 0 /* sql */
            iconst_1
            iload 1 /* start */
            aload 2 /* other */
            iconst_0
            aload 2 /* other */
            invokevirtual java.lang.String.length:()I
            invokevirtual java.lang.String.regionMatches:(ZILjava/lang/String;II)Z
            ireturn
        end local 2 // java.lang.String other
        end local 1 // int start
        end local 0 // java.lang.String sql
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0    sql  Ljava/lang/String;
            0    1     1  start  I
            0    1     2  other  Ljava/lang/String;
    MethodParameters:
       Name  Flags
      sql    
      start  
      other  

  private static void checkTypeConcurrency(int, int);
    descriptor: (II)V
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // int resultSetType
        start local 1 // int resultSetConcurrency
         0: .line 1511
            iload 0 /* resultSetType */
            tableswitch { // 1003 - 1005
                 1003: 1
                 1004: 1
                 1005: 1
              default: 2
          }
         1: .line 1515
      StackMap locals:
      StackMap stack:
            goto 5
         2: .line 1517
      StackMap locals:
      StackMap stack:
            ldc "resultSetType"
         3: .line 1518
            iload 0 /* resultSetType */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
         4: .line 1517
            invokestatic org.h2.message.DbException.getInvalidValueException:(Ljava/lang/String;Ljava/lang/Object;)Lorg/h2/message/DbException;
            athrow
         5: .line 1520
      StackMap locals:
      StackMap stack:
            iload 1 /* resultSetConcurrency */
            tableswitch { // 1007 - 1008
                 1007: 6
                 1008: 6
              default: 7
          }
         6: .line 1523
      StackMap locals:
      StackMap stack:
            goto 10
         7: .line 1525
      StackMap locals:
      StackMap stack:
            ldc "resultSetConcurrency"
         8: .line 1526
            iload 1 /* resultSetConcurrency */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
         9: .line 1525
            invokestatic org.h2.message.DbException.getInvalidValueException:(Ljava/lang/String;Ljava/lang/Object;)Lorg/h2/message/DbException;
            athrow
        10: .line 1528
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int resultSetConcurrency
        end local 0 // int resultSetType
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0   11     0         resultSetType  I
            0   11     1  resultSetConcurrency  I
    MethodParameters:
                      Name  Flags
      resultSetType         
      resultSetConcurrency  

  private static void checkHoldability(int);
    descriptor: (I)V
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // int resultSetHoldability
         0: .line 1533
            iload 0 /* resultSetHoldability */
            iconst_1
            if_icmpeq 5
         1: .line 1534
            iload 0 /* resultSetHoldability */
            iconst_2
            if_icmpeq 5
         2: .line 1535
            ldc "resultSetHoldability"
         3: .line 1536
            iload 0 /* resultSetHoldability */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
         4: .line 1535
            invokestatic org.h2.message.DbException.getInvalidValueException:(Ljava/lang/String;Ljava/lang/Object;)Lorg/h2/message/DbException;
            athrow
         5: .line 1538
      StackMap locals:
      StackMap stack:
            return
        end local 0 // int resultSetHoldability
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0    6     0  resultSetHoldability  I
    MethodParameters:
                      Name  Flags
      resultSetHoldability  

  protected void checkClosed();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.h2.jdbc.JdbcConnection this
         0: .line 1547
            aload 0 /* this */
            iconst_0
            invokevirtual org.h2.jdbc.JdbcConnection.checkClosed:(Z)V
         1: .line 1548
            return
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/h2/jdbc/JdbcConnection;

  private void checkClosedForWrite();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.h2.jdbc.JdbcConnection this
         0: .line 1557
            aload 0 /* this */
            iconst_1
            invokevirtual org.h2.jdbc.JdbcConnection.checkClosed:(Z)V
         1: .line 1558
            return
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/h2/jdbc/JdbcConnection;

  protected void checkClosed(boolean);
    descriptor: (Z)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.h2.jdbc.JdbcConnection this
        start local 1 // boolean write
         0: .line 1567
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.session:Lorg/h2/engine/SessionInterface;
            ifnonnull 2
         1: .line 1568
            ldc 90007
            invokestatic org.h2.message.DbException.get:(I)Lorg/h2/message/DbException;
            athrow
         2: .line 1570
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.session:Lorg/h2/engine/SessionInterface;
            invokeinterface org.h2.engine.SessionInterface.isClosed:()Z
            ifeq 4
         3: .line 1571
            ldc 90121
            invokestatic org.h2.message.DbException.get:(I)Lorg/h2/message/DbException;
            athrow
         4: .line 1573
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.session:Lorg/h2/engine/SessionInterface;
            iload 1 /* write */
            invokeinterface org.h2.engine.SessionInterface.isReconnectNeeded:(Z)Z
            ifeq 9
         5: .line 1574
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.trace:Lorg/h2/message/Trace;
            ldc "reconnect"
            invokevirtual org.h2.message.Trace.debug:(Ljava/lang/String;)V
         6: .line 1575
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.closePreparedCommands:()V
         7: .line 1576
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.session:Lorg/h2/engine/SessionInterface;
            iload 1 /* write */
            invokeinterface org.h2.engine.SessionInterface.reconnect:(Z)Lorg/h2/engine/SessionInterface;
            putfield org.h2.jdbc.JdbcConnection.session:Lorg/h2/engine/SessionInterface;
         8: .line 1577
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.session:Lorg/h2/engine/SessionInterface;
            invokeinterface org.h2.engine.SessionInterface.getTrace:()Lorg/h2/message/Trace;
            putfield org.h2.jdbc.JdbcConnection.trace:Lorg/h2/message/Trace;
         9: .line 1579
      StackMap locals:
      StackMap stack:
            return
        end local 1 // boolean write
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   10     0   this  Lorg/h2/jdbc/JdbcConnection;
            0   10     1  write  Z
    MethodParameters:
       Name  Flags
      write  

  protected void afterWriting();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.jdbc.JdbcConnection this
         0: .line 1586
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.session:Lorg/h2/engine/SessionInterface;
            ifnull 2
         1: .line 1587
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.session:Lorg/h2/engine/SessionInterface;
            invokeinterface org.h2.engine.SessionInterface.afterWriting:()V
         2: .line 1589
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/h2/jdbc/JdbcConnection;

  java.lang.String getURL();
    descriptor: ()Ljava/lang/String;
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.jdbc.JdbcConnection this
         0: .line 1592
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.checkClosed:()V
         1: .line 1593
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.url:Ljava/lang/String;
            areturn
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/h2/jdbc/JdbcConnection;

  java.lang.String getUser();
    descriptor: ()Ljava/lang/String;
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.jdbc.JdbcConnection this
         0: .line 1597
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.checkClosed:()V
         1: .line 1598
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.user:Ljava/lang/String;
            areturn
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/h2/jdbc/JdbcConnection;

  private void rollbackInternal();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.h2.jdbc.JdbcConnection this
         0: .line 1602
            aload 0 /* this */
            aload 0 /* this */
            ldc "ROLLBACK"
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.rollback:Lorg/h2/command/CommandInterface;
            invokevirtual org.h2.jdbc.JdbcConnection.prepareCommand:(Ljava/lang/String;Lorg/h2/command/CommandInterface;)Lorg/h2/command/CommandInterface;
            putfield org.h2.jdbc.JdbcConnection.rollback:Lorg/h2/command/CommandInterface;
         1: .line 1603
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.rollback:Lorg/h2/command/CommandInterface;
            iconst_0
            invokestatic java.lang.Boolean.valueOf:(Z)Ljava/lang/Boolean;
            invokeinterface org.h2.command.CommandInterface.executeUpdate:(Ljava/lang/Object;)Lorg/h2/result/ResultWithGeneratedKeys;
            pop
         2: .line 1604
            return
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/h2/jdbc/JdbcConnection;

  public int getPowerOffCount();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.jdbc.JdbcConnection this
         0: .line 1610
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.session:Lorg/h2/engine/SessionInterface;
            ifnull 1
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.session:Lorg/h2/engine/SessionInterface;
            invokeinterface org.h2.engine.SessionInterface.isClosed:()Z
            ifeq 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
            goto 3
         2: .line 1611
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.session:Lorg/h2/engine/SessionInterface;
            invokeinterface org.h2.engine.SessionInterface.getPowerOffCount:()I
         3: .line 1610
      StackMap locals:
      StackMap stack: int
            ireturn
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/h2/jdbc/JdbcConnection;

  public void setPowerOffCount(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.h2.jdbc.JdbcConnection this
        start local 1 // int count
         0: .line 1618
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.session:Lorg/h2/engine/SessionInterface;
            ifnull 2
         1: .line 1619
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.session:Lorg/h2/engine/SessionInterface;
            iload 1 /* count */
            invokeinterface org.h2.engine.SessionInterface.setPowerOffCount:(I)V
         2: .line 1621
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int count
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lorg/h2/jdbc/JdbcConnection;
            0    3     1  count  I
    MethodParameters:
       Name  Flags
      count  

  public void setExecutingStatement(java.sql.Statement);
    descriptor: (Ljava/sql/Statement;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.h2.jdbc.JdbcConnection this
        start local 1 // java.sql.Statement stat
         0: .line 1627
            aload 0 /* this */
            aload 1 /* stat */
            putfield org.h2.jdbc.JdbcConnection.executingStatement:Ljava/sql/Statement;
         1: .line 1628
            return
        end local 1 // java.sql.Statement stat
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/h2/jdbc/JdbcConnection;
            0    2     1  stat  Ljava/sql/Statement;
    MethodParameters:
      Name  Flags
      stat  

  boolean scopeGeneratedKeys();
    descriptor: ()Z
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.jdbc.JdbcConnection this
         0: .line 1634
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.scopeGeneratedKeys:Z
            ireturn
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/jdbc/JdbcConnection;

  org.h2.jdbc.JdbcResultSet getGeneratedKeys(org.h2.jdbc.JdbcStatement, int);
    descriptor: (Lorg/h2/jdbc/JdbcStatement;I)Lorg/h2/jdbc/JdbcResultSet;
    flags: (0x0000) 
    Code:
      stack=10, locals=4, args_size=3
        start local 0 // org.h2.jdbc.JdbcConnection this
        start local 1 // org.h2.jdbc.JdbcStatement stat
        start local 2 // int id
         0: .line 1641
            aload 0 /* this */
            aload 0 /* this */
         1: .line 1642
            ldc "SELECT SCOPE_IDENTITY() WHERE SCOPE_IDENTITY() IS NOT NULL"
         2: .line 1644
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.getGeneratedKeys:Lorg/h2/command/CommandInterface;
         3: .line 1641
            invokevirtual org.h2.jdbc.JdbcConnection.prepareCommand:(Ljava/lang/String;Lorg/h2/command/CommandInterface;)Lorg/h2/command/CommandInterface;
            putfield org.h2.jdbc.JdbcConnection.getGeneratedKeys:Lorg/h2/command/CommandInterface;
         4: .line 1645
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.getGeneratedKeys:Lorg/h2/command/CommandInterface;
            iconst_0
            iconst_0
            invokeinterface org.h2.command.CommandInterface.executeQuery:(IZ)Lorg/h2/result/ResultInterface;
            astore 3 /* result */
        start local 3 // org.h2.result.ResultInterface result
         5: .line 1646
            new org.h2.jdbc.JdbcResultSet
            dup
            aload 0 /* this */
            aload 1 /* stat */
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.getGeneratedKeys:Lorg/h2/command/CommandInterface;
            aload 3 /* result */
         6: .line 1647
            iload 2 /* id */
            iconst_0
            iconst_1
            iconst_0
         7: .line 1646
            invokespecial org.h2.jdbc.JdbcResultSet.<init>:(Lorg/h2/jdbc/JdbcConnection;Lorg/h2/jdbc/JdbcStatement;Lorg/h2/command/CommandInterface;Lorg/h2/result/ResultInterface;IZZZ)V
            areturn
        end local 3 // org.h2.result.ResultInterface result
        end local 2 // int id
        end local 1 // org.h2.jdbc.JdbcStatement stat
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    this  Lorg/h2/jdbc/JdbcConnection;
            0    8     1    stat  Lorg/h2/jdbc/JdbcStatement;
            0    8     2      id  I
            5    8     3  result  Lorg/h2/result/ResultInterface;
    MethodParameters:
      Name  Flags
      stat  
      id    

  public java.sql.Clob createClob();
    descriptor: ()Ljava/sql/Clob;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=2, args_size=1
        start local 0 // org.h2.jdbc.JdbcConnection this
         0: .line 1658
            bipush 10
            invokestatic org.h2.jdbc.JdbcConnection.getNextId:(I)I
            istore 1 /* id */
        start local 1 // int id
         1: .line 1659
            aload 0 /* this */
            ldc "Clob"
            bipush 10
            iload 1 /* id */
            ldc "createClob()"
            invokevirtual org.h2.jdbc.JdbcConnection.debugCodeAssign:(Ljava/lang/String;IILjava/lang/String;)V
         2: .line 1660
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.checkClosedForWrite:()V
         3: .line 1661
            new org.h2.jdbc.JdbcClob
            dup
            aload 0 /* this */
            getstatic org.h2.value.ValueString.EMPTY:Lorg/h2/value/ValueString;
            getstatic org.h2.jdbc.JdbcLob$State.NEW:Lorg/h2/jdbc/JdbcLob$State;
            iload 1 /* id */
            invokespecial org.h2.jdbc.JdbcClob.<init>:(Lorg/h2/jdbc/JdbcConnection;Lorg/h2/value/Value;Lorg/h2/jdbc/JdbcLob$State;I)V
         4: areturn
        end local 1 // int id
         5: .line 1662
      StackMap locals:
      StackMap stack: java.lang.Exception
            astore 1 /* e */
        start local 1 // java.lang.Exception e
         6: .line 1663
            aload 0 /* this */
            aload 1 /* e */
            invokevirtual org.h2.jdbc.JdbcConnection.logAndConvert:(Ljava/lang/Throwable;)Ljava/sql/SQLException;
            athrow
        end local 1 // java.lang.Exception e
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/h2/jdbc/JdbcConnection;
            1    5     1    id  I
            6    7     1     e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           0     4       5  Class java.lang.Exception
    Exceptions:
      throws java.sql.SQLException

  public java.sql.Blob createBlob();
    descriptor: ()Ljava/sql/Blob;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=2, args_size=1
        start local 0 // org.h2.jdbc.JdbcConnection this
         0: .line 1675
            bipush 9
            invokestatic org.h2.jdbc.JdbcConnection.getNextId:(I)I
            istore 1 /* id */
        start local 1 // int id
         1: .line 1676
            aload 0 /* this */
            ldc "Blob"
            bipush 9
            iload 1 /* id */
            ldc "createClob()"
            invokevirtual org.h2.jdbc.JdbcConnection.debugCodeAssign:(Ljava/lang/String;IILjava/lang/String;)V
         2: .line 1677
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.checkClosedForWrite:()V
         3: .line 1678
            new org.h2.jdbc.JdbcBlob
            dup
            aload 0 /* this */
            getstatic org.h2.value.ValueBytes.EMPTY:Lorg/h2/value/ValueBytes;
            getstatic org.h2.jdbc.JdbcLob$State.NEW:Lorg/h2/jdbc/JdbcLob$State;
            iload 1 /* id */
            invokespecial org.h2.jdbc.JdbcBlob.<init>:(Lorg/h2/jdbc/JdbcConnection;Lorg/h2/value/Value;Lorg/h2/jdbc/JdbcLob$State;I)V
         4: areturn
        end local 1 // int id
         5: .line 1679
      StackMap locals:
      StackMap stack: java.lang.Exception
            astore 1 /* e */
        start local 1 // java.lang.Exception e
         6: .line 1680
            aload 0 /* this */
            aload 1 /* e */
            invokevirtual org.h2.jdbc.JdbcConnection.logAndConvert:(Ljava/lang/Throwable;)Ljava/sql/SQLException;
            athrow
        end local 1 // java.lang.Exception e
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/h2/jdbc/JdbcConnection;
            1    5     1    id  I
            6    7     1     e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           0     4       5  Class java.lang.Exception
    Exceptions:
      throws java.sql.SQLException

  public java.sql.NClob createNClob();
    descriptor: ()Ljava/sql/NClob;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=2, args_size=1
        start local 0 // org.h2.jdbc.JdbcConnection this
         0: .line 1692
            bipush 10
            invokestatic org.h2.jdbc.JdbcConnection.getNextId:(I)I
            istore 1 /* id */
        start local 1 // int id
         1: .line 1693
            aload 0 /* this */
            ldc "NClob"
            bipush 10
            iload 1 /* id */
            ldc "createNClob()"
            invokevirtual org.h2.jdbc.JdbcConnection.debugCodeAssign:(Ljava/lang/String;IILjava/lang/String;)V
         2: .line 1694
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.checkClosedForWrite:()V
         3: .line 1695
            new org.h2.jdbc.JdbcClob
            dup
            aload 0 /* this */
            getstatic org.h2.value.ValueString.EMPTY:Lorg/h2/value/ValueString;
            getstatic org.h2.jdbc.JdbcLob$State.NEW:Lorg/h2/jdbc/JdbcLob$State;
            iload 1 /* id */
            invokespecial org.h2.jdbc.JdbcClob.<init>:(Lorg/h2/jdbc/JdbcConnection;Lorg/h2/value/Value;Lorg/h2/jdbc/JdbcLob$State;I)V
         4: areturn
        end local 1 // int id
         5: .line 1696
      StackMap locals:
      StackMap stack: java.lang.Exception
            astore 1 /* e */
        start local 1 // java.lang.Exception e
         6: .line 1697
            aload 0 /* this */
            aload 1 /* e */
            invokevirtual org.h2.jdbc.JdbcConnection.logAndConvert:(Ljava/lang/Throwable;)Ljava/sql/SQLException;
            athrow
        end local 1 // java.lang.Exception e
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/h2/jdbc/JdbcConnection;
            1    5     1    id  I
            6    7     1     e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           0     4       5  Class java.lang.Exception
    Exceptions:
      throws java.sql.SQLException

  public java.sql.SQLXML createSQLXML();
    descriptor: ()Ljava/sql/SQLXML;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=2, args_size=1
        start local 0 // org.h2.jdbc.JdbcConnection this
         0: .line 1709
            bipush 17
            invokestatic org.h2.jdbc.JdbcConnection.getNextId:(I)I
            istore 1 /* id */
        start local 1 // int id
         1: .line 1710
            aload 0 /* this */
            ldc "SQLXML"
            bipush 17
            iload 1 /* id */
            ldc "createSQLXML()"
            invokevirtual org.h2.jdbc.JdbcConnection.debugCodeAssign:(Ljava/lang/String;IILjava/lang/String;)V
         2: .line 1711
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.checkClosedForWrite:()V
         3: .line 1712
            new org.h2.jdbc.JdbcSQLXML
            dup
            aload 0 /* this */
            getstatic org.h2.value.ValueString.EMPTY:Lorg/h2/value/ValueString;
            getstatic org.h2.jdbc.JdbcLob$State.NEW:Lorg/h2/jdbc/JdbcLob$State;
            iload 1 /* id */
            invokespecial org.h2.jdbc.JdbcSQLXML.<init>:(Lorg/h2/jdbc/JdbcConnection;Lorg/h2/value/Value;Lorg/h2/jdbc/JdbcLob$State;I)V
         4: areturn
        end local 1 // int id
         5: .line 1713
      StackMap locals:
      StackMap stack: java.lang.Exception
            astore 1 /* e */
        start local 1 // java.lang.Exception e
         6: .line 1714
            aload 0 /* this */
            aload 1 /* e */
            invokevirtual org.h2.jdbc.JdbcConnection.logAndConvert:(Ljava/lang/Throwable;)Ljava/sql/SQLException;
            athrow
        end local 1 // java.lang.Exception e
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/h2/jdbc/JdbcConnection;
            1    5     1    id  I
            6    7     1     e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           0     4       5  Class java.lang.Exception
    Exceptions:
      throws java.sql.SQLException

  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=5, locals=5, args_size=3
        start local 0 // org.h2.jdbc.JdbcConnection this
        start local 1 // java.lang.String typeName
        start local 2 // java.lang.Object[] elements
         0: .line 1729
            bipush 16
            invokestatic org.h2.jdbc.JdbcConnection.getNextId:(I)I
            istore 3 /* id */
        start local 3 // int id
         1: .line 1730
            aload 0 /* this */
            ldc "Array"
            bipush 16
            iload 3 /* id */
            ldc "createArrayOf()"
            invokevirtual org.h2.jdbc.JdbcConnection.debugCodeAssign:(Ljava/lang/String;IILjava/lang/String;)V
         2: .line 1731
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.checkClosed:()V
         3: .line 1732
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.session:Lorg/h2/engine/SessionInterface;
            aload 2 /* elements */
         4: .line 1733
            bipush 17
         5: .line 1732
            invokestatic org.h2.value.DataType.convertToValue:(Lorg/h2/engine/SessionInterface;Ljava/lang/Object;I)Lorg/h2/value/Value;
            astore 4 /* value */
        start local 4 // org.h2.value.Value value
         6: .line 1734
            new org.h2.jdbc.JdbcArray
            dup
            aload 0 /* this */
            aload 4 /* value */
            iload 3 /* id */
            invokespecial org.h2.jdbc.JdbcArray.<init>:(Lorg/h2/jdbc/JdbcConnection;Lorg/h2/value/Value;I)V
         7: areturn
        end local 4 // org.h2.value.Value value
        end local 3 // int id
         8: .line 1735
      StackMap locals:
      StackMap stack: java.lang.Exception
            astore 3 /* e */
        start local 3 // java.lang.Exception e
         9: .line 1736
            aload 0 /* this */
            aload 3 /* e */
            invokevirtual org.h2.jdbc.JdbcConnection.logAndConvert:(Ljava/lang/Throwable;)Ljava/sql/SQLException;
            athrow
        end local 3 // java.lang.Exception e
        end local 2 // java.lang.Object[] elements
        end local 1 // java.lang.String typeName
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   10     0      this  Lorg/h2/jdbc/JdbcConnection;
            0   10     1  typeName  Ljava/lang/String;
            0   10     2  elements  [Ljava/lang/Object;
            1    8     3        id  I
            6    8     4     value  Lorg/h2/value/Value;
            9   10     3         e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           0     7       8  Class java.lang.Exception
    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=2, locals=3, args_size=3
        start local 0 // org.h2.jdbc.JdbcConnection this
        start local 1 // java.lang.String typeName
        start local 2 // java.lang.Object[] attributes
         0: .line 1746
            aload 0 /* this */
            ldc "Struct"
            invokevirtual org.h2.jdbc.JdbcConnection.unsupported:(Ljava/lang/String;)Ljava/sql/SQLException;
            athrow
        end local 2 // java.lang.Object[] attributes
        end local 1 // java.lang.String typeName
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        this  Lorg/h2/jdbc/JdbcConnection;
            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 synchronized boolean isValid(int);
    descriptor: (I)Z
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // org.h2.jdbc.JdbcConnection this
        start local 1 // int timeout
         0: .line 1759
            aload 0 /* this */
            ldc "isValid"
            iload 1 /* timeout */
            i2l
            invokevirtual org.h2.jdbc.JdbcConnection.debugCodeCall:(Ljava/lang/String;J)V
         1: .line 1760
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.session:Lorg/h2/engine/SessionInterface;
            ifnull 2
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.session:Lorg/h2/engine/SessionInterface;
            invokeinterface org.h2.engine.SessionInterface.isClosed:()Z
            ifeq 3
         2: .line 1761
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
         3: .line 1764
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.getTransactionIsolation:()I
            pop
         4: .line 1765
            iconst_1
            ireturn
         5: .line 1766
      StackMap locals:
      StackMap stack: java.lang.Exception
            astore 2 /* e */
        start local 2 // java.lang.Exception e
         6: .line 1768
            aload 0 /* this */
            aload 2 /* e */
            invokevirtual org.h2.jdbc.JdbcConnection.logAndConvert:(Ljava/lang/Throwable;)Ljava/sql/SQLException;
            pop
         7: .line 1769
            iconst_0
            ireturn
        end local 2 // java.lang.Exception e
        end local 1 // int timeout
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    8     0     this  Lorg/h2/jdbc/JdbcConnection;
            0    8     1  timeout  I
            6    8     2        e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           0     2       5  Class java.lang.Exception
           3     4       5  Class java.lang.Exception
    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.h2.jdbc.JdbcConnection this
        start local 1 // java.lang.String name
        start local 2 // java.lang.String value
         0: .line 1794
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.isDebugEnabled:()Z
            ifeq 4
         1: .line 1795
            aload 0 /* this */
            new java.lang.StringBuilder
            dup
            ldc "setClientInfo("
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* name */
            invokestatic org.h2.jdbc.JdbcConnection.quote:(Ljava/lang/String;)Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc ", "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 2 /* value */
            invokestatic org.h2.jdbc.JdbcConnection.quote:(Ljava/lang/String;)Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         2: .line 1796
            ldc ");"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         3: .line 1795
            invokevirtual org.h2.jdbc.JdbcConnection.debugCode:(Ljava/lang/String;)V
         4: .line 1798
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.checkClosed:()V
         5: .line 1803
            aload 2 /* value */
            aload 0 /* this */
            aload 1 /* name */
            invokevirtual org.h2.jdbc.JdbcConnection.getClientInfo:(Ljava/lang/String;)Ljava/lang/String;
            invokestatic java.util.Objects.equals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 7
         6: .line 1804
            return
         7: .line 1807
      StackMap locals:
      StackMap stack:
            aload 1 /* name */
            invokestatic org.h2.jdbc.JdbcConnection.isInternalProperty:(Ljava/lang/String;)Z
            ifeq 12
         8: .line 1808
            new java.sql.SQLClientInfoException
            dup
         9: .line 1809
            new java.lang.StringBuilder
            dup
            ldc "Property name '"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* name */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc " is used internally by H2."
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        10: .line 1810
            invokestatic java.util.Collections.emptyMap:()Ljava/util/Map;
        11: .line 1808
            invokespecial java.sql.SQLClientInfoException.<init>:(Ljava/lang/String;Ljava/util/Map;)V
            athrow
        12: .line 1813
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.getMode:()Lorg/h2/engine/Mode;
            getfield org.h2.engine.Mode.supportedClientInfoPropertiesRegEx:Ljava/util/regex/Pattern;
            astore 3 /* clientInfoNameRegEx */
        start local 3 // java.util.regex.Pattern clientInfoNameRegEx
        13: .line 1815
            aload 3 /* clientInfoNameRegEx */
            ifnull 19
        14: .line 1816
            aload 3 /* clientInfoNameRegEx */
            aload 1 /* name */
            invokevirtual java.util.regex.Pattern.matcher:(Ljava/lang/CharSequence;)Ljava/util/regex/Matcher;
            invokevirtual java.util.regex.Matcher.matches:()Z
            ifeq 19
        15: .line 1817
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.clientInfo:Ljava/util/Map;
            ifnonnull 17
        16: .line 1818
            aload 0 /* this */
            new java.util.HashMap
            dup
            invokespecial java.util.HashMap.<init>:()V
            putfield org.h2.jdbc.JdbcConnection.clientInfo:Ljava/util/Map;
        17: .line 1820
      StackMap locals: java.util.regex.Pattern
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.clientInfo:Ljava/util/Map;
            aload 1 /* name */
            aload 2 /* value */
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
        18: .line 1821
            goto 25
        19: .line 1822
      StackMap locals:
      StackMap stack:
            new java.sql.SQLClientInfoException
            dup
        20: .line 1823
            new java.lang.StringBuilder
            dup
            ldc "Client info name '"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* name */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc "' not supported."
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        21: .line 1824
            invokestatic java.util.Collections.emptyMap:()Ljava/util/Map;
        22: .line 1822
            invokespecial java.sql.SQLClientInfoException.<init>:(Ljava/lang/String;Ljava/util/Map;)V
            athrow
        end local 3 // java.util.regex.Pattern clientInfoNameRegEx
        23: .line 1826
      StackMap locals: org.h2.jdbc.JdbcConnection java.lang.String java.lang.String
      StackMap stack: java.lang.Exception
            astore 3 /* e */
        start local 3 // java.lang.Exception e
        24: .line 1827
            aload 0 /* this */
            aload 3 /* e */
            invokevirtual org.h2.jdbc.JdbcConnection.logAndConvert:(Ljava/lang/Throwable;)Ljava/sql/SQLException;
            invokestatic org.h2.jdbc.JdbcConnection.convertToClientInfoException:(Ljava/sql/SQLException;)Ljava/sql/SQLClientInfoException;
            athrow
        end local 3 // java.lang.Exception e
        25: .line 1829
      StackMap locals:
      StackMap stack:
            return
        end local 2 // java.lang.String value
        end local 1 // java.lang.String name
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0   26     0                 this  Lorg/h2/jdbc/JdbcConnection;
            0   26     1                 name  Ljava/lang/String;
            0   26     2                value  Ljava/lang/String;
           13   23     3  clientInfoNameRegEx  Ljava/util/regex/Pattern;
           24   25     3                    e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           0     6      23  Class java.lang.Exception
           7    23      23  Class java.lang.Exception
    Exceptions:
      throws java.sql.SQLClientInfoException
    MethodParameters:
       Name  Flags
      name   
      value  

  private static boolean isInternalProperty(java.lang.String);
    descriptor: (Ljava/lang/String;)Z
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.lang.String name
         0: .line 1832
            ldc "numServers"
            aload 0 /* name */
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifne 1
            aload 0 /* name */
            ldc "server"
            invokevirtual java.lang.String.startsWith:(Ljava/lang/String;)Z
            ifne 1
            iconst_0
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_1
            ireturn
        end local 0 // java.lang.String name
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  name  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      name  

  private static java.sql.SQLClientInfoException convertToClientInfoException(java.sql.SQLException);
    descriptor: (Ljava/sql/SQLException;)Ljava/sql/SQLClientInfoException;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=7, locals=1, args_size=1
        start local 0 // java.sql.SQLException x
         0: .line 1837
            aload 0 /* x */
            instanceof java.sql.SQLClientInfoException
            ifeq 2
         1: .line 1838
            aload 0 /* x */
            checkcast java.sql.SQLClientInfoException
            areturn
         2: .line 1840
      StackMap locals:
      StackMap stack:
            new java.sql.SQLClientInfoException
            dup
            aload 0 /* x */
            invokevirtual java.sql.SQLException.getMessage:()Ljava/lang/String;
            aload 0 /* x */
            invokevirtual java.sql.SQLException.getSQLState:()Ljava/lang/String;
         3: .line 1841
            aload 0 /* x */
            invokevirtual java.sql.SQLException.getErrorCode:()I
            aconst_null
            aconst_null
         4: .line 1840
            invokespecial java.sql.SQLClientInfoException.<init>:(Ljava/lang/String;Ljava/lang/String;ILjava/util/Map;Ljava/lang/Throwable;)V
            areturn
        end local 0 // java.sql.SQLException x
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0     x  Ljava/sql/SQLException;
    MethodParameters:
      Name  Flags
      x     

  public void setClientInfo(java.util.Properties);
    descriptor: (Ljava/util/Properties;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // org.h2.jdbc.JdbcConnection this
        start local 1 // java.util.Properties properties
         0: .line 1856
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.isDebugEnabled:()Z
            ifeq 2
         1: .line 1857
            aload 0 /* this */
            ldc "setClientInfo(properties);"
            invokevirtual org.h2.jdbc.JdbcConnection.debugCode:(Ljava/lang/String;)V
         2: .line 1859
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.checkClosed:()V
         3: .line 1860
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.clientInfo:Ljava/util/Map;
            ifnonnull 6
         4: .line 1861
            aload 0 /* this */
            new java.util.HashMap
            dup
            invokespecial java.util.HashMap.<init>:()V
            putfield org.h2.jdbc.JdbcConnection.clientInfo:Ljava/util/Map;
         5: .line 1862
            goto 7
         6: .line 1863
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.clientInfo:Ljava/util/Map;
            invokeinterface java.util.Map.clear:()V
         7: .line 1865
      StackMap locals:
      StackMap stack:
            aload 1 /* properties */
            invokevirtual java.util.Properties.entrySet:()Ljava/util/Set;
            invokeinterface java.util.Set.iterator:()Ljava/util/Iterator;
            astore 3
            goto 12
      StackMap locals: org.h2.jdbc.JdbcConnection java.util.Properties top java.util.Iterator
      StackMap stack:
         8: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.util.Map$Entry
            astore 2 /* entry */
        start local 2 // java.util.Map$Entry entry
         9: .line 1866
            aload 0 /* this */
            aload 2 /* entry */
            invokeinterface java.util.Map$Entry.getKey:()Ljava/lang/Object;
            checkcast java.lang.String
        10: .line 1867
            aload 2 /* entry */
            invokeinterface java.util.Map$Entry.getValue:()Ljava/lang/Object;
            checkcast java.lang.String
        11: .line 1866
            invokevirtual org.h2.jdbc.JdbcConnection.setClientInfo:(Ljava/lang/String;Ljava/lang/String;)V
        end local 2 // java.util.Map$Entry entry
        12: .line 1865
      StackMap locals:
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 8
        13: .line 1869
            goto 16
      StackMap locals: org.h2.jdbc.JdbcConnection java.util.Properties
      StackMap stack: java.lang.Exception
        14: astore 2 /* e */
        start local 2 // java.lang.Exception e
        15: .line 1870
            aload 0 /* this */
            aload 2 /* e */
            invokevirtual org.h2.jdbc.JdbcConnection.logAndConvert:(Ljava/lang/Throwable;)Ljava/sql/SQLException;
            invokestatic org.h2.jdbc.JdbcConnection.convertToClientInfoException:(Ljava/sql/SQLException;)Ljava/sql/SQLClientInfoException;
            athrow
        end local 2 // java.lang.Exception e
        16: .line 1872
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.util.Properties properties
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   17     0        this  Lorg/h2/jdbc/JdbcConnection;
            0   17     1  properties  Ljava/util/Properties;
            9   12     2       entry  Ljava/util/Map$Entry<Ljava/lang/Object;Ljava/lang/Object;>;
           15   16     2           e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           0    13      14  Class java.lang.Exception
    Exceptions:
      throws java.sql.SQLClientInfoException
    MethodParameters:
            Name  Flags
      properties  

  public java.util.Properties getClientInfo();
    descriptor: ()Ljava/util/Properties;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=1
        start local 0 // org.h2.jdbc.JdbcConnection this
         0: .line 1882
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.isDebugEnabled:()Z
            ifeq 2
         1: .line 1883
            aload 0 /* this */
            ldc "getClientInfo();"
            invokevirtual org.h2.jdbc.JdbcConnection.debugCode:(Ljava/lang/String;)V
         2: .line 1885
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.checkClosed:()V
         3: .line 1886
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.session:Lorg/h2/engine/SessionInterface;
            invokeinterface org.h2.engine.SessionInterface.getClusterServers:()Ljava/util/ArrayList;
            astore 1 /* serverList */
        start local 1 // java.util.ArrayList serverList
         4: .line 1887
            new java.util.Properties
            dup
            invokespecial java.util.Properties.<init>:()V
            astore 2 /* p */
        start local 2 // java.util.Properties p
         5: .line 1889
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.clientInfo:Ljava/util/Map;
            ifnull 10
         6: .line 1890
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.clientInfo:Ljava/util/Map;
            invokeinterface java.util.Map.entrySet:()Ljava/util/Set;
            invokeinterface java.util.Set.iterator:()Ljava/util/Iterator;
            astore 4
            goto 9
      StackMap locals: org.h2.jdbc.JdbcConnection java.util.ArrayList java.util.Properties top java.util.Iterator
      StackMap stack:
         7: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.util.Map$Entry
            astore 3 /* entry */
        start local 3 // java.util.Map$Entry entry
         8: .line 1891
            aload 2 /* p */
            aload 3 /* entry */
            invokeinterface java.util.Map$Entry.getKey:()Ljava/lang/Object;
            checkcast java.lang.String
            aload 3 /* entry */
            invokeinterface java.util.Map$Entry.getValue:()Ljava/lang/Object;
            checkcast java.lang.String
            invokevirtual java.util.Properties.setProperty:(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/Object;
            pop
        end local 3 // java.util.Map$Entry entry
         9: .line 1890
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 7
        10: .line 1895
      StackMap locals: org.h2.jdbc.JdbcConnection java.util.ArrayList java.util.Properties
      StackMap stack:
            aload 2 /* p */
            ldc "numServers"
            aload 1 /* serverList */
            invokevirtual java.util.ArrayList.size:()I
            invokestatic java.lang.Integer.toString:(I)Ljava/lang/String;
            invokevirtual java.util.Properties.setProperty:(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/Object;
            pop
        11: .line 1896
            iconst_0
            istore 3 /* i */
        start local 3 // int i
        12: goto 15
        13: .line 1897
      StackMap locals: int
      StackMap stack:
            aload 2 /* p */
            new java.lang.StringBuilder
            dup
            ldc "server"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 3 /* i */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            aload 1 /* serverList */
            iload 3 /* i */
            invokevirtual java.util.ArrayList.get:(I)Ljava/lang/Object;
            checkcast java.lang.String
            invokevirtual java.util.Properties.setProperty:(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/Object;
            pop
        14: .line 1896
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        15: iload 3 /* i */
            aload 1 /* serverList */
            invokevirtual java.util.ArrayList.size:()I
            if_icmplt 13
        end local 3 // int i
        16: .line 1900
            aload 2 /* p */
        17: areturn
        end local 2 // java.util.Properties p
        end local 1 // java.util.ArrayList serverList
        18: .line 1901
      StackMap locals: org.h2.jdbc.JdbcConnection
      StackMap stack: java.lang.Exception
            astore 1 /* e */
        start local 1 // java.lang.Exception e
        19: .line 1902
            aload 0 /* this */
            aload 1 /* e */
            invokevirtual org.h2.jdbc.JdbcConnection.logAndConvert:(Ljava/lang/Throwable;)Ljava/sql/SQLException;
            athrow
        end local 1 // java.lang.Exception e
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   20     0        this  Lorg/h2/jdbc/JdbcConnection;
            4   18     1  serverList  Ljava/util/ArrayList<Ljava/lang/String;>;
            5   18     2           p  Ljava/util/Properties;
            8    9     3       entry  Ljava/util/Map$Entry<Ljava/lang/String;Ljava/lang/String;>;
           12   16     3           i  I
           19   20     1           e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           0    17      18  Class java.lang.Exception
    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=3, locals=3, args_size=2
        start local 0 // org.h2.jdbc.JdbcConnection this
        start local 1 // java.lang.String name
         0: .line 1916
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.isDebugEnabled:()Z
            ifeq 2
         1: .line 1917
            aload 0 /* this */
            ldc "getClientInfo"
            aload 1 /* name */
            invokevirtual org.h2.jdbc.JdbcConnection.debugCodeCall:(Ljava/lang/String;Ljava/lang/String;)V
         2: .line 1919
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.checkClosed:()V
         3: .line 1920
            aload 1 /* name */
            ifnonnull 5
         4: .line 1921
            ldc "name"
            aconst_null
            invokestatic org.h2.message.DbException.getInvalidValueException:(Ljava/lang/String;Ljava/lang/Object;)Lorg/h2/message/DbException;
            athrow
         5: .line 1923
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.getClientInfo:()Ljava/util/Properties;
            aload 1 /* name */
            invokevirtual java.util.Properties.getProperty:(Ljava/lang/String;)Ljava/lang/String;
         6: areturn
         7: .line 1924
      StackMap locals:
      StackMap stack: java.lang.Exception
            astore 2 /* e */
        start local 2 // java.lang.Exception e
         8: .line 1925
            aload 0 /* this */
            aload 2 /* e */
            invokevirtual org.h2.jdbc.JdbcConnection.logAndConvert:(Ljava/lang/Throwable;)Ljava/sql/SQLException;
            athrow
        end local 2 // java.lang.Exception e
        end local 1 // java.lang.String name
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lorg/h2/jdbc/JdbcConnection;
            0    9     1  name  Ljava/lang/String;
            8    9     2     e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           0     6       7  Class java.lang.Exception
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
      Name  Flags
      name  

  public <T> T unwrap(java.lang.Class<T>);
    descriptor: (Ljava/lang/Class;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.h2.jdbc.JdbcConnection this
        start local 1 // java.lang.Class iface
         0: .line 1939
            aload 0 /* this */
            aload 1 /* iface */
            invokevirtual org.h2.jdbc.JdbcConnection.isWrapperFor:(Ljava/lang/Class;)Z
            ifeq 3
         1: .line 1940
            aload 0 /* this */
         2: areturn
         3: .line 1942
      StackMap locals:
      StackMap stack:
            ldc "iface"
            aload 1 /* iface */
            invokestatic org.h2.message.DbException.getInvalidValueException:(Ljava/lang/String;Ljava/lang/Object;)Lorg/h2/message/DbException;
            athrow
         4: .line 1943
      StackMap locals:
      StackMap stack: java.lang.Exception
            astore 2 /* e */
        start local 2 // java.lang.Exception e
         5: .line 1944
            aload 0 /* this */
            aload 2 /* e */
            invokevirtual org.h2.jdbc.JdbcConnection.logAndConvert:(Ljava/lang/Throwable;)Ljava/sql/SQLException;
            athrow
        end local 2 // java.lang.Exception e
        end local 1 // java.lang.Class iface
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Lorg/h2/jdbc/JdbcConnection;
            0    6     1  iface  Ljava/lang/Class<TT;>;
            5    6     2      e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           0     2       4  Class java.lang.Exception
           3     4       4  Class java.lang.Exception
    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.h2.jdbc.JdbcConnection this
        start local 1 // java.lang.Class iface
         0: .line 1956
            aload 1 /* iface */
            ifnull 1
            aload 1 /* iface */
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.isAssignableFrom:(Ljava/lang/Class;)Z
            ifeq 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 1 // java.lang.Class iface
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lorg/h2/jdbc/JdbcConnection;
            0    2     1  iface  Ljava/lang/Class<*>;
    Exceptions:
      throws java.sql.SQLException
    Signature: (Ljava/lang/Class<*>;)Z
    MethodParameters:
       Name  Flags
      iface  

  public org.h2.value.Value createClob(java.io.Reader, long);
    descriptor: (Ljava/io/Reader;J)Lorg/h2/value/Value;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=3
        start local 0 // org.h2.jdbc.JdbcConnection this
        start local 1 // java.io.Reader x
        start local 2 // long length
         0: .line 1968
            aload 1 /* x */
            ifnonnull 2
         1: .line 1969
            getstatic org.h2.value.ValueNull.INSTANCE:Lorg/h2/value/ValueNull;
            areturn
         2: .line 1971
      StackMap locals:
      StackMap stack:
            lload 2 /* length */
            lconst_0
            lcmp
            ifgt 4
         3: .line 1972
            ldc -1
            lstore 2 /* length */
         4: .line 1974
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.session:Lorg/h2/engine/SessionInterface;
            invokeinterface org.h2.engine.SessionInterface.getDataHandler:()Lorg/h2/store/DataHandler;
            invokeinterface org.h2.store.DataHandler.getLobStorage:()Lorg/h2/store/LobStorageInterface;
            aload 1 /* x */
         5: .line 1975
            lload 2 /* length */
         6: .line 1974
            invokeinterface org.h2.store.LobStorageInterface.createClob:(Ljava/io/Reader;J)Lorg/h2/value/Value;
            astore 4 /* v */
        start local 4 // org.h2.value.Value v
         7: .line 1976
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.session:Lorg/h2/engine/SessionInterface;
            aload 4 /* v */
            invokeinterface org.h2.engine.SessionInterface.addTemporaryLob:(Lorg/h2/value/Value;)V
         8: .line 1977
            aload 4 /* v */
            areturn
        end local 4 // org.h2.value.Value v
        end local 2 // long length
        end local 1 // java.io.Reader x
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    9     0    this  Lorg/h2/jdbc/JdbcConnection;
            0    9     1       x  Ljava/io/Reader;
            0    9     2  length  J
            7    9     4       v  Lorg/h2/value/Value;
    MethodParameters:
        Name  Flags
      x       
      length  

  public org.h2.value.Value createBlob(java.io.InputStream, long);
    descriptor: (Ljava/io/InputStream;J)Lorg/h2/value/Value;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=3
        start local 0 // org.h2.jdbc.JdbcConnection this
        start local 1 // java.io.InputStream x
        start local 2 // long length
         0: .line 1989
            aload 1 /* x */
            ifnonnull 2
         1: .line 1990
            getstatic org.h2.value.ValueNull.INSTANCE:Lorg/h2/value/ValueNull;
            areturn
         2: .line 1992
      StackMap locals:
      StackMap stack:
            lload 2 /* length */
            lconst_0
            lcmp
            ifgt 4
         3: .line 1993
            ldc -1
            lstore 2 /* length */
         4: .line 1995
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.session:Lorg/h2/engine/SessionInterface;
            invokeinterface org.h2.engine.SessionInterface.getDataHandler:()Lorg/h2/store/DataHandler;
            invokeinterface org.h2.store.DataHandler.getLobStorage:()Lorg/h2/store/LobStorageInterface;
            aload 1 /* x */
         5: .line 1996
            lload 2 /* length */
         6: .line 1995
            invokeinterface org.h2.store.LobStorageInterface.createBlob:(Ljava/io/InputStream;J)Lorg/h2/value/Value;
            astore 4 /* v */
        start local 4 // org.h2.value.Value v
         7: .line 1997
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.session:Lorg/h2/engine/SessionInterface;
            aload 4 /* v */
            invokeinterface org.h2.engine.SessionInterface.addTemporaryLob:(Lorg/h2/value/Value;)V
         8: .line 1998
            aload 4 /* v */
            areturn
        end local 4 // org.h2.value.Value v
        end local 2 // long length
        end local 1 // java.io.InputStream x
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    9     0    this  Lorg/h2/jdbc/JdbcConnection;
            0    9     1       x  Ljava/io/InputStream;
            0    9     2  length  J
            7    9     4       v  Lorg/h2/value/Value;
    MethodParameters:
        Name  Flags
      x       
      length  

  public void setSchema(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.h2.jdbc.JdbcConnection this
        start local 1 // java.lang.String schema
         0: .line 2010
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.isDebugEnabled:()Z
            ifeq 2
         1: .line 2011
            aload 0 /* this */
            ldc "setSchema"
            aload 1 /* schema */
            invokevirtual org.h2.jdbc.JdbcConnection.debugCodeCall:(Ljava/lang/String;Ljava/lang/String;)V
         2: .line 2013
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.checkClosed:()V
         3: .line 2014
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.session:Lorg/h2/engine/SessionInterface;
            aload 1 /* schema */
            invokeinterface org.h2.engine.SessionInterface.setCurrentSchemaName:(Ljava/lang/String;)V
         4: .line 2015
            goto 7
      StackMap locals:
      StackMap stack: java.lang.Exception
         5: astore 2 /* e */
        start local 2 // java.lang.Exception e
         6: .line 2016
            aload 0 /* this */
            aload 2 /* e */
            invokevirtual org.h2.jdbc.JdbcConnection.logAndConvert:(Ljava/lang/Throwable;)Ljava/sql/SQLException;
            athrow
        end local 2 // java.lang.Exception e
         7: .line 2018
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.lang.String schema
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    this  Lorg/h2/jdbc/JdbcConnection;
            0    8     1  schema  Ljava/lang/String;
            6    7     2       e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           0     4       5  Class java.lang.Exception
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
        Name  Flags
      schema  

  public java.lang.String getSchema();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.h2.jdbc.JdbcConnection this
         0: .line 2028
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.isDebugEnabled:()Z
            ifeq 2
         1: .line 2029
            aload 0 /* this */
            ldc "getSchema"
            invokevirtual org.h2.jdbc.JdbcConnection.debugCodeCall:(Ljava/lang/String;)V
         2: .line 2031
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.checkClosed:()V
         3: .line 2032
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.session:Lorg/h2/engine/SessionInterface;
            invokeinterface org.h2.engine.SessionInterface.getCurrentSchemaName:()Ljava/lang/String;
         4: areturn
         5: .line 2033
      StackMap locals:
      StackMap stack: java.lang.Exception
            astore 1 /* e */
        start local 1 // java.lang.Exception e
         6: .line 2034
            aload 0 /* this */
            aload 1 /* e */
            invokevirtual org.h2.jdbc.JdbcConnection.logAndConvert:(Ljava/lang/Throwable;)Ljava/sql/SQLException;
            athrow
        end local 1 // java.lang.Exception e
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/h2/jdbc/JdbcConnection;
            6    7     1     e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           0     4       5  Class java.lang.Exception
    Exceptions:
      throws java.sql.SQLException

  public void abort(java.util.concurrent.Executor);
    descriptor: (Ljava/util/concurrent/Executor;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=0, locals=2, args_size=2
        start local 0 // org.h2.jdbc.JdbcConnection this
        start local 1 // java.util.concurrent.Executor executor
         0: .line 2046
            return
        end local 1 // java.util.concurrent.Executor executor
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/h2/jdbc/JdbcConnection;
            0    1     1  executor  Ljava/util/concurrent/Executor;
    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=0, locals=3, args_size=3
        start local 0 // org.h2.jdbc.JdbcConnection this
        start local 1 // java.util.concurrent.Executor executor
        start local 2 // int milliseconds
         0: .line 2057
            return
        end local 2 // int milliseconds
        end local 1 // java.util.concurrent.Executor executor
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0          this  Lorg/h2/jdbc/JdbcConnection;
            0    1     1      executor  Ljava/util/concurrent/Executor;
            0    1     2  milliseconds  I
    MethodParameters:
              Name  Flags
      executor      
      milliseconds  

  public int getNetworkTimeout();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.jdbc.JdbcConnection this
         0: .line 2064
            iconst_0
            ireturn
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/jdbc/JdbcConnection;

  static void checkMap(java.util.Map<java.lang.String, java.lang.Class<?>>);
    descriptor: (Ljava/util/Map;)V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.util.Map map
         0: .line 2074
            aload 0 /* map */
            ifnull 2
            aload 0 /* map */
            invokeinterface java.util.Map.size:()I
            ifle 2
         1: .line 2075
            ldc "map.size > 0"
            invokestatic org.h2.message.DbException.getUnsupportedException:(Ljava/lang/String;)Lorg/h2/message/DbException;
            athrow
         2: .line 2077
      StackMap locals:
      StackMap stack:
            return
        end local 0 // java.util.Map map
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0   map  Ljava/util/Map<Ljava/lang/String;Ljava/lang/Class<*>;>;
    Signature: (Ljava/util/Map<Ljava/lang/String;Ljava/lang/Class<*>;>;)V
    MethodParameters:
      Name  Flags
      map   

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.h2.jdbc.JdbcConnection this
         0: .line 2084
            new java.lang.StringBuilder
            dup
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.getTraceObjectName:()Ljava/lang/String;
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            ldc ": url="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.url:Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc " user="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.user:Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/jdbc/JdbcConnection;

  java.lang.Object convertToDefaultObject(org.h2.value.Value);
    descriptor: (Lorg/h2/value/Value;)Ljava/lang/Object;
    flags: (0x0000) 
    Code:
      stack=10, locals=3, args_size=2
        start local 0 // org.h2.jdbc.JdbcConnection this
        start local 1 // org.h2.value.Value v
         0: .line 2095
            aload 1 /* v */
            invokevirtual org.h2.value.Value.getValueType:()I
            lookupswitch { // 6
                    2: 11
                    3: 11
                   15: 3
                   16: 1
                   18: 9
                   19: 5
              default: 13
          }
         1: .line 2097
      StackMap locals:
      StackMap stack:
            bipush 10
            invokestatic org.h2.jdbc.JdbcConnection.getNextId:(I)I
            istore 2 /* id */
        start local 2 // int id
         2: .line 2098
            new org.h2.jdbc.JdbcClob
            dup
            aload 0 /* this */
            aload 1 /* v */
            getstatic org.h2.jdbc.JdbcLob$State.WITH_VALUE:Lorg/h2/jdbc/JdbcLob$State;
            iload 2 /* id */
            invokespecial org.h2.jdbc.JdbcClob.<init>:(Lorg/h2/jdbc/JdbcConnection;Lorg/h2/value/Value;Lorg/h2/jdbc/JdbcLob$State;I)V
            areturn
        end local 2 // int id
         3: .line 2101
      StackMap locals:
      StackMap stack:
            bipush 9
            invokestatic org.h2.jdbc.JdbcConnection.getNextId:(I)I
            istore 2 /* id */
        start local 2 // int id
         4: .line 2102
            new org.h2.jdbc.JdbcBlob
            dup
            aload 0 /* this */
            aload 1 /* v */
            getstatic org.h2.jdbc.JdbcLob$State.WITH_VALUE:Lorg/h2/jdbc/JdbcLob$State;
            iload 2 /* id */
            invokespecial org.h2.jdbc.JdbcBlob.<init>:(Lorg/h2/jdbc/JdbcConnection;Lorg/h2/value/Value;Lorg/h2/jdbc/JdbcLob$State;I)V
            areturn
        end local 2 // int id
         5: .line 2105
      StackMap locals:
      StackMap stack:
            getstatic org.h2.engine.SysProperties.serializeJavaObject:Z
            ifeq 13
         6: .line 2106
            aload 1 /* v */
            invokevirtual org.h2.value.Value.getBytesNoCopy:()[B
         7: .line 2107
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.session:Lorg/h2/engine/SessionInterface;
            invokeinterface org.h2.engine.SessionInterface.getDataHandler:()Lorg/h2/store/DataHandler;
         8: .line 2106
            invokestatic org.h2.util.JdbcUtils.deserialize:([BLorg/h2/store/DataHandler;)Ljava/lang/Object;
            areturn
         9: .line 2111
      StackMap locals:
      StackMap stack:
            iconst_4
            invokestatic org.h2.jdbc.JdbcConnection.getNextId:(I)I
            istore 2 /* id */
        start local 2 // int id
        10: .line 2112
            new org.h2.jdbc.JdbcResultSet
            dup
            aload 0 /* this */
            aconst_null
            aconst_null
            aload 1 /* v */
            checkcast org.h2.value.ValueResultSet
            invokevirtual org.h2.value.ValueResultSet.getResult:()Lorg/h2/result/ResultInterface;
            iload 2 /* id */
            iconst_0
            iconst_1
            iconst_0
            invokespecial org.h2.jdbc.JdbcResultSet.<init>:(Lorg/h2/jdbc/JdbcConnection;Lorg/h2/jdbc/JdbcStatement;Lorg/h2/command/CommandInterface;Lorg/h2/result/ResultInterface;IZZZ)V
            areturn
        end local 2 // int id
        11: .line 2116
      StackMap locals:
      StackMap stack:
            getstatic org.h2.engine.SysProperties.OLD_RESULT_SET_GET_OBJECT:Z
            ifne 13
        12: .line 2117
            aload 1 /* v */
            invokevirtual org.h2.value.Value.getInt:()I
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            areturn
        13: .line 2121
      StackMap locals:
      StackMap stack:
            aload 1 /* v */
            invokevirtual org.h2.value.Value.getObject:()Ljava/lang/Object;
            areturn
        end local 1 // org.h2.value.Value v
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   14     0  this  Lorg/h2/jdbc/JdbcConnection;
            0   14     1     v  Lorg/h2/value/Value;
            2    3     2    id  I
            4    5     2    id  I
           10   11     2    id  I
    MethodParameters:
      Name  Flags
      v     

  org.h2.value.CompareMode getCompareMode();
    descriptor: ()Lorg/h2/value/CompareMode;
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.jdbc.JdbcConnection this
         0: .line 2125
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.session:Lorg/h2/engine/SessionInterface;
            invokeinterface org.h2.engine.SessionInterface.getDataHandler:()Lorg/h2/store/DataHandler;
            invokeinterface org.h2.store.DataHandler.getCompareMode:()Lorg/h2/value/CompareMode;
            areturn
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/jdbc/JdbcConnection;

  public void setTraceLevel(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.h2.jdbc.JdbcConnection this
        start local 1 // int level
         0: .line 2132
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.trace:Lorg/h2/message/Trace;
            iload 1 /* level */
            invokevirtual org.h2.message.Trace.setLevel:(I)V
         1: .line 2133
            return
        end local 1 // int level
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lorg/h2/jdbc/JdbcConnection;
            0    2     1  level  I
    MethodParameters:
       Name  Flags
      level  

  org.h2.engine.Mode getMode();
    descriptor: ()Lorg/h2/engine/Mode;
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.jdbc.JdbcConnection this
         0: .line 2136
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.getSettings:()Lorg/h2/jdbc/JdbcConnection$Settings;
            getfield org.h2.jdbc.JdbcConnection$Settings.mode:Lorg/h2/engine/Mode;
            areturn
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/jdbc/JdbcConnection;
    Exceptions:
      throws java.sql.SQLException

  public org.h2.jdbc.JdbcConnection$Settings getSettings();
    descriptor: ()Lorg/h2/jdbc/JdbcConnection$Settings;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=12, args_size=1
        start local 0 // org.h2.jdbc.JdbcConnection this
         0: .line 2143
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.settings:Lorg/h2/jdbc/JdbcConnection$Settings;
            astore 1 /* settings */
        start local 1 // org.h2.jdbc.JdbcConnection$Settings settings
         1: .line 2144
            aload 1 /* settings */
            ifnonnull 46
         2: .line 2145
            getstatic org.h2.engine.Mode$ModeEnum.REGULAR:Lorg/h2/engine/Mode$ModeEnum;
            invokevirtual org.h2.engine.Mode$ModeEnum.name:()Ljava/lang/String;
            astore 2 /* modeName */
        start local 2 // java.lang.String modeName
         3: .line 2146
            iconst_1
            istore 3 /* databaseToUpper */
        start local 3 // boolean databaseToUpper
         4: iconst_0
            istore 4 /* databaseToLower */
        start local 4 // boolean databaseToLower
         5: iconst_0
            istore 5 /* caseInsensitiveIdentifiers */
        start local 5 // boolean caseInsensitiveIdentifiers
         6: .line 2147
            aconst_null
            astore 6
            aconst_null
            astore 7
         7: aload 0 /* this */
         8: .line 2148
            ldc "SELECT NAME, VALUE FROM INFORMATION_SCHEMA.SETTINGS WHERE NAME IN (?, ?, ?, ?)"
         9: .line 2147
            invokevirtual org.h2.jdbc.JdbcConnection.prepareStatement:(Ljava/lang/String;)Ljava/sql/PreparedStatement;
            astore 8 /* prep */
        start local 8 // java.sql.PreparedStatement prep
        10: .line 2149
            aload 8 /* prep */
            iconst_1
            ldc "MODE"
            invokeinterface java.sql.PreparedStatement.setString:(ILjava/lang/String;)V
        11: .line 2150
            aload 8 /* prep */
            iconst_2
            ldc "DATABASE_TO_UPPER"
            invokeinterface java.sql.PreparedStatement.setString:(ILjava/lang/String;)V
        12: .line 2151
            aload 8 /* prep */
            iconst_3
            ldc "DATABASE_TO_LOWER"
            invokeinterface java.sql.PreparedStatement.setString:(ILjava/lang/String;)V
        13: .line 2152
            aload 8 /* prep */
            iconst_4
            ldc "CASE_INSENSITIVE_IDENTIFIERS"
            invokeinterface java.sql.PreparedStatement.setString:(ILjava/lang/String;)V
        14: .line 2153
            aload 8 /* prep */
            invokeinterface java.sql.PreparedStatement.executeQuery:()Ljava/sql/ResultSet;
            astore 9 /* rs */
        start local 9 // java.sql.ResultSet rs
        15: .line 2154
            goto 29
        16: .line 2155
      StackMap locals: org.h2.jdbc.JdbcConnection org.h2.jdbc.JdbcConnection$Settings java.lang.String int int int java.lang.Throwable java.lang.Throwable java.sql.PreparedStatement java.sql.ResultSet
      StackMap stack:
            aload 9 /* rs */
            iconst_2
            invokeinterface java.sql.ResultSet.getString:(I)Ljava/lang/String;
            astore 10 /* value */
        start local 10 // java.lang.String value
        17: .line 2156
            aload 9 /* rs */
            iconst_1
            invokeinterface java.sql.ResultSet.getString:(I)Ljava/lang/String;
            dup
            astore 11
            invokevirtual java.lang.String.hashCode:()I
            lookupswitch { // 4
           -601444243: 18
              2372003: 19
            756040289: 20
            764375042: 21
              default: 29
          }
      StackMap locals: java.lang.String java.lang.String
      StackMap stack:
        18: aload 11
            ldc "CASE_INSENSITIVE_IDENTIFIERS"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifne 28
            goto 29
      StackMap locals:
      StackMap stack:
        19: aload 11
            ldc "MODE"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifne 22
            goto 29
      StackMap locals:
      StackMap stack:
        20: aload 11
            ldc "DATABASE_TO_LOWER"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifne 26
            goto 29
      StackMap locals:
      StackMap stack:
        21: aload 11
            ldc "DATABASE_TO_UPPER"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifne 24
            goto 29
        22: .line 2158
      StackMap locals:
      StackMap stack:
            aload 10 /* value */
            astore 2 /* modeName */
        23: .line 2159
            goto 29
        24: .line 2161
      StackMap locals:
      StackMap stack:
            aload 10 /* value */
            invokestatic java.lang.Boolean.valueOf:(Ljava/lang/String;)Ljava/lang/Boolean;
            invokevirtual java.lang.Boolean.booleanValue:()Z
            istore 3 /* databaseToUpper */
        25: .line 2162
            goto 29
        26: .line 2164
      StackMap locals:
      StackMap stack:
            aload 10 /* value */
            invokestatic java.lang.Boolean.valueOf:(Ljava/lang/String;)Ljava/lang/Boolean;
            invokevirtual java.lang.Boolean.booleanValue:()Z
            istore 4 /* databaseToLower */
        27: .line 2165
            goto 29
        28: .line 2167
      StackMap locals:
      StackMap stack:
            aload 10 /* value */
            invokestatic java.lang.Boolean.valueOf:(Ljava/lang/String;)Ljava/lang/Boolean;
            invokevirtual java.lang.Boolean.booleanValue:()Z
            istore 5 /* caseInsensitiveIdentifiers */
        end local 10 // java.lang.String value
        29: .line 2154
      StackMap locals:
      StackMap stack:
            aload 9 /* rs */
            invokeinterface java.sql.ResultSet.next:()Z
            ifne 16
        end local 9 // java.sql.ResultSet rs
        30: .line 2170
            aload 8 /* prep */
            ifnull 36
            aload 8 /* prep */
            invokeinterface java.sql.PreparedStatement.close:()V
            goto 36
      StackMap locals: org.h2.jdbc.JdbcConnection org.h2.jdbc.JdbcConnection$Settings java.lang.String int int int java.lang.Throwable java.lang.Throwable java.sql.PreparedStatement
      StackMap stack: java.lang.Throwable
        31: astore 6
            aload 8 /* prep */
            ifnull 32
            aload 8 /* prep */
            invokeinterface java.sql.PreparedStatement.close:()V
        end local 8 // java.sql.PreparedStatement prep
      StackMap locals:
      StackMap stack:
        32: aload 6
            athrow
      StackMap locals:
      StackMap stack: java.lang.Throwable
        33: astore 7
            aload 6
            ifnonnull 34
            aload 7
            astore 6
            goto 35
      StackMap locals:
      StackMap stack:
        34: aload 6
            aload 7
            if_acmpeq 35
            aload 6
            aload 7
            invokevirtual java.lang.Throwable.addSuppressed:(Ljava/lang/Throwable;)V
      StackMap locals:
      StackMap stack:
        35: aload 6
            athrow
        36: .line 2171
      StackMap locals:
      StackMap stack:
            aload 2 /* modeName */
            invokestatic org.h2.engine.Mode.getInstance:(Ljava/lang/String;)Lorg/h2/engine/Mode;
            astore 6 /* mode */
        start local 6 // org.h2.engine.Mode mode
        37: .line 2172
            aload 6 /* mode */
            ifnonnull 39
        38: .line 2173
            invokestatic org.h2.engine.Mode.getRegular:()Lorg/h2/engine/Mode;
            astore 6 /* mode */
        39: .line 2175
      StackMap locals: org.h2.engine.Mode
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.session:Lorg/h2/engine/SessionInterface;
            instanceof org.h2.engine.SessionRemote
            ifeq 44
        40: .line 2176
            aload 0 /* this */
            getfield org.h2.jdbc.JdbcConnection.session:Lorg/h2/engine/SessionInterface;
            checkcast org.h2.engine.SessionRemote
            invokevirtual org.h2.engine.SessionRemote.getClientVersion:()I
            bipush 18
            if_icmpge 44
        41: .line 2177
            iload 3 /* databaseToUpper */
            ifeq 42
            iconst_0
            goto 43
      StackMap locals:
      StackMap stack:
        42: iconst_1
      StackMap locals:
      StackMap stack: int
        43: istore 5 /* caseInsensitiveIdentifiers */
        44: .line 2179
      StackMap locals:
      StackMap stack:
            new org.h2.jdbc.JdbcConnection$Settings
            dup
            aload 6 /* mode */
            iload 3 /* databaseToUpper */
            iload 4 /* databaseToLower */
            iload 5 /* caseInsensitiveIdentifiers */
            invokespecial org.h2.jdbc.JdbcConnection$Settings.<init>:(Lorg/h2/engine/Mode;ZZZ)V
            astore 1 /* settings */
        45: .line 2180
            aload 0 /* this */
            aload 1 /* settings */
            putfield org.h2.jdbc.JdbcConnection.settings:Lorg/h2/jdbc/JdbcConnection$Settings;
        end local 6 // org.h2.engine.Mode mode
        end local 5 // boolean caseInsensitiveIdentifiers
        end local 4 // boolean databaseToLower
        end local 3 // boolean databaseToUpper
        end local 2 // java.lang.String modeName
        46: .line 2182
      StackMap locals: org.h2.jdbc.JdbcConnection org.h2.jdbc.JdbcConnection$Settings
      StackMap stack:
            aload 1 /* settings */
            areturn
        end local 1 // org.h2.jdbc.JdbcConnection$Settings settings
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot                        Name  Signature
            0   47     0                        this  Lorg/h2/jdbc/JdbcConnection;
            1   47     1                    settings  Lorg/h2/jdbc/JdbcConnection$Settings;
            3   46     2                    modeName  Ljava/lang/String;
            4   46     3             databaseToUpper  Z
            5   46     4             databaseToLower  Z
            6   46     5  caseInsensitiveIdentifiers  Z
           10   32     8                        prep  Ljava/sql/PreparedStatement;
           15   30     9                          rs  Ljava/sql/ResultSet;
           17   29    10                       value  Ljava/lang/String;
           37   46     6                        mode  Lorg/h2/engine/Mode;
      Exception table:
        from    to  target  type
          10    30      31  any
           7    33      33  any
    Exceptions:
      throws java.sql.SQLException

  public boolean isRegularMode();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.h2.jdbc.JdbcConnection this
         0: .line 2190
            aload 0 /* this */
            aconst_null
            putfield org.h2.jdbc.JdbcConnection.settings:Lorg/h2/jdbc/JdbcConnection$Settings;
         1: .line 2191
            aload 0 /* this */
            invokevirtual org.h2.jdbc.JdbcConnection.getMode:()Lorg/h2/engine/Mode;
            invokevirtual org.h2.engine.Mode.getEnum:()Lorg/h2/engine/Mode$ModeEnum;
            getstatic org.h2.engine.Mode$ModeEnum.REGULAR:Lorg/h2/engine/Mode$ModeEnum;
            if_acmpne 2
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         2: iconst_0
            ireturn
        end local 0 // org.h2.jdbc.JdbcConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/h2/jdbc/JdbcConnection;
    Exceptions:
      throws java.sql.SQLException
}
SourceFile: "JdbcConnection.java"
NestMembers:
  org.h2.jdbc.JdbcConnection$Settings
InnerClasses:
  public abstract Entry = java.util.Map$Entry of java.util.Map
  public final ModeEnum = org.h2.engine.Mode$ModeEnum of org.h2.engine.Mode
  public final Settings = org.h2.jdbc.JdbcConnection$Settings of org.h2.jdbc.JdbcConnection
  public final State = org.h2.jdbc.JdbcLob$State of org.h2.jdbc.JdbcLob