public class io.vertx.jdbcclient.impl.actions.JDBCPrepareStatementAction extends io.vertx.ext.jdbc.impl.actions.AbstractJDBCAction<io.vertx.sqlclient.impl.PreparedStatement>
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.jdbcclient.impl.actions.JDBCPrepareStatementAction
  super_class: io.vertx.ext.jdbc.impl.actions.AbstractJDBCAction
{
  private final java.lang.String sql;
    descriptor: Ljava/lang/String;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>(io.vertx.ext.jdbc.impl.actions.JDBCStatementHelper, io.vertx.ext.sql.SQLOptions, java.lang.String);
    descriptor: (Lio/vertx/ext/jdbc/impl/actions/JDBCStatementHelper;Lio/vertx/ext/sql/SQLOptions;Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // io.vertx.jdbcclient.impl.actions.JDBCPrepareStatementAction this
        start local 1 // io.vertx.ext.jdbc.impl.actions.JDBCStatementHelper helper
        start local 2 // io.vertx.ext.sql.SQLOptions options
        start local 3 // java.lang.String sql
         0: .line 36
            aload 0 /* this */
            aload 1 /* helper */
            aload 2 /* options */
            invokespecial io.vertx.ext.jdbc.impl.actions.AbstractJDBCAction.<init>:(Lio/vertx/ext/jdbc/impl/actions/JDBCStatementHelper;Lio/vertx/ext/sql/SQLOptions;)V
         1: .line 37
            aload 0 /* this */
            aload 3 /* sql */
            putfield io.vertx.jdbcclient.impl.actions.JDBCPrepareStatementAction.sql:Ljava/lang/String;
         2: .line 38
            return
        end local 3 // java.lang.String sql
        end local 2 // io.vertx.ext.sql.SQLOptions options
        end local 1 // io.vertx.ext.jdbc.impl.actions.JDBCStatementHelper helper
        end local 0 // io.vertx.jdbcclient.impl.actions.JDBCPrepareStatementAction this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lio/vertx/jdbcclient/impl/actions/JDBCPrepareStatementAction;
            0    3     1   helper  Lio/vertx/ext/jdbc/impl/actions/JDBCStatementHelper;
            0    3     2  options  Lio/vertx/ext/sql/SQLOptions;
            0    3     3      sql  Ljava/lang/String;
    MethodParameters:
         Name  Flags
      helper   
      options  
      sql      

  public io.vertx.sqlclient.impl.PreparedStatement execute(java.sql.Connection);
    descriptor: (Ljava/sql/Connection;)Lio/vertx/sqlclient/impl/PreparedStatement;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=8, args_size=2
        start local 0 // io.vertx.jdbcclient.impl.actions.JDBCPrepareStatementAction this
        start local 1 // java.sql.Connection conn
         0: .line 43
            aload 0 /* this */
            getfield io.vertx.jdbcclient.impl.actions.JDBCPrepareStatementAction.options:Lio/vertx/ext/sql/SQLOptions;
            ifnull 1
            aload 0 /* this */
            getfield io.vertx.jdbcclient.impl.actions.JDBCPrepareStatementAction.options:Lio/vertx/ext/sql/SQLOptions;
            invokevirtual io.vertx.ext.sql.SQLOptions.isAutoGeneratedKeys:()Z
            ifne 1
            iconst_0
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_1
      StackMap locals:
      StackMap stack: int
         2: istore 2 /* autoGeneratedKeys */
        start local 2 // boolean autoGeneratedKeys
         3: .line 44
            aload 0 /* this */
            getfield io.vertx.jdbcclient.impl.actions.JDBCPrepareStatementAction.options:Lio/vertx/ext/sql/SQLOptions;
            ifnull 4
            aload 0 /* this */
            getfield io.vertx.jdbcclient.impl.actions.JDBCPrepareStatementAction.options:Lio/vertx/ext/sql/SQLOptions;
            invokevirtual io.vertx.ext.sql.SQLOptions.getAutoGeneratedKeysIndexes:()Lio/vertx/core/json/JsonArray;
            ifnull 4
            iconst_1
            goto 5
      StackMap locals: int
      StackMap stack:
         4: iconst_0
      StackMap locals:
      StackMap stack: int
         5: istore 3 /* autoGeneratedIndexes */
        start local 3 // boolean autoGeneratedIndexes
         6: .line 48
            iload 2 /* autoGeneratedKeys */
            ifeq 9
            iload 3 /* autoGeneratedIndexes */
            ifne 9
         7: .line 49
            aload 1 /* conn */
            aload 0 /* this */
            getfield io.vertx.jdbcclient.impl.actions.JDBCPrepareStatementAction.sql:Ljava/lang/String;
            iconst_1
            invokeinterface java.sql.Connection.prepareStatement:(Ljava/lang/String;I)Ljava/sql/PreparedStatement;
            astore 4 /* ps */
        start local 4 // java.sql.PreparedStatement ps
         8: .line 50
            goto 33
        end local 4 // java.sql.PreparedStatement ps
      StackMap locals: int
      StackMap stack:
         9: iload 3 /* autoGeneratedIndexes */
            ifeq 32
        10: .line 52
            aload 0 /* this */
            getfield io.vertx.jdbcclient.impl.actions.JDBCPrepareStatementAction.options:Lio/vertx/ext/sql/SQLOptions;
            invokevirtual io.vertx.ext.sql.SQLOptions.getAutoGeneratedKeysIndexes:()Lio/vertx/core/json/JsonArray;
            astore 5 /* indexes */
        start local 5 // io.vertx.core.json.JsonArray indexes
        11: .line 54
            aload 5 /* indexes */
            iconst_0
            invokevirtual io.vertx.core.json.JsonArray.getValue:(I)Ljava/lang/Object;
            instanceof java.lang.Number
            ifeq 20
        12: .line 55
            aload 5 /* indexes */
            invokevirtual io.vertx.core.json.JsonArray.size:()I
            newarray 10
            astore 6 /* keys */
        start local 6 // int[] keys
        13: .line 56
            iconst_0
            istore 7 /* i */
        start local 7 // int i
        14: goto 17
        15: .line 57
      StackMap locals: io.vertx.jdbcclient.impl.actions.JDBCPrepareStatementAction java.sql.Connection int int top io.vertx.core.json.JsonArray int[] int
      StackMap stack:
            aload 6 /* keys */
            iload 7 /* i */
            aload 5 /* indexes */
            iload 7 /* i */
            invokevirtual io.vertx.core.json.JsonArray.getInteger:(I)Ljava/lang/Integer;
            invokevirtual java.lang.Integer.intValue:()I
            iastore
        16: .line 56
            iinc 7 /* i */ 1
      StackMap locals:
      StackMap stack:
        17: iload 7 /* i */
            aload 6 /* keys */
            arraylength
            if_icmplt 15
        end local 7 // int i
        18: .line 59
            aload 1 /* conn */
            aload 0 /* this */
            getfield io.vertx.jdbcclient.impl.actions.JDBCPrepareStatementAction.sql:Ljava/lang/String;
            aload 6 /* keys */
            invokeinterface java.sql.Connection.prepareStatement:(Ljava/lang/String;[I)Ljava/sql/PreparedStatement;
            astore 4 /* ps */
        end local 6 // int[] keys
        start local 4 // java.sql.PreparedStatement ps
        19: .line 60
            goto 33
        end local 4 // java.sql.PreparedStatement ps
      StackMap locals:
      StackMap stack:
        20: aload 5 /* indexes */
            iconst_0
            invokevirtual io.vertx.core.json.JsonArray.getValue:(I)Ljava/lang/Object;
            instanceof java.lang.String
            ifeq 29
        21: .line 61
            aload 5 /* indexes */
            invokevirtual io.vertx.core.json.JsonArray.size:()I
            anewarray java.lang.String
            astore 6 /* keys */
        start local 6 // java.lang.String[] keys
        22: .line 62
            iconst_0
            istore 7 /* i */
        start local 7 // int i
        23: goto 26
        24: .line 63
      StackMap locals: java.lang.String[] int
      StackMap stack:
            aload 6 /* keys */
            iload 7 /* i */
            aload 5 /* indexes */
            iload 7 /* i */
            invokevirtual io.vertx.core.json.JsonArray.getString:(I)Ljava/lang/String;
            aastore
        25: .line 62
            iinc 7 /* i */ 1
      StackMap locals:
      StackMap stack:
        26: iload 7 /* i */
            aload 6 /* keys */
            arraylength
            if_icmplt 24
        end local 7 // int i
        27: .line 65
            aload 1 /* conn */
            aload 0 /* this */
            getfield io.vertx.jdbcclient.impl.actions.JDBCPrepareStatementAction.sql:Ljava/lang/String;
            aload 6 /* keys */
            invokeinterface java.sql.Connection.prepareStatement:(Ljava/lang/String;[Ljava/lang/String;)Ljava/sql/PreparedStatement;
            astore 4 /* ps */
        end local 6 // java.lang.String[] keys
        start local 4 // java.sql.PreparedStatement ps
        28: .line 66
            goto 33
        end local 4 // java.sql.PreparedStatement ps
        29: .line 67
      StackMap locals:
      StackMap stack:
            new java.sql.SQLException
            dup
            ldc "Invalid type of index, only [int, String] allowed"
            invokespecial java.sql.SQLException.<init>:(Ljava/lang/String;)V
            athrow
        30: .line 69
      StackMap locals:
      StackMap stack: java.lang.RuntimeException
            astore 6 /* e */
        start local 6 // java.lang.RuntimeException e
        31: .line 71
            new java.sql.SQLException
            dup
            aload 6 /* e */
            invokespecial java.sql.SQLException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 6 // java.lang.RuntimeException e
        end local 5 // io.vertx.core.json.JsonArray indexes
        32: .line 74
      StackMap locals: io.vertx.jdbcclient.impl.actions.JDBCPrepareStatementAction java.sql.Connection int int
      StackMap stack:
            aload 1 /* conn */
            aload 0 /* this */
            getfield io.vertx.jdbcclient.impl.actions.JDBCPrepareStatementAction.sql:Ljava/lang/String;
            invokeinterface java.sql.Connection.prepareStatement:(Ljava/lang/String;)Ljava/sql/PreparedStatement;
            astore 4 /* ps */
        start local 4 // java.sql.PreparedStatement ps
        33: .line 77
      StackMap locals: java.sql.PreparedStatement
      StackMap stack:
            new io.vertx.jdbcclient.impl.actions.JDBCPreparedStatement
            dup
            aload 0 /* this */
            getfield io.vertx.jdbcclient.impl.actions.JDBCPrepareStatementAction.sql:Ljava/lang/String;
            aload 4 /* ps */
            invokespecial io.vertx.jdbcclient.impl.actions.JDBCPreparedStatement.<init>:(Ljava/lang/String;Ljava/sql/PreparedStatement;)V
            areturn
        end local 4 // java.sql.PreparedStatement ps
        end local 3 // boolean autoGeneratedIndexes
        end local 2 // boolean autoGeneratedKeys
        end local 1 // java.sql.Connection conn
        end local 0 // io.vertx.jdbcclient.impl.actions.JDBCPrepareStatementAction this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0   34     0                  this  Lio/vertx/jdbcclient/impl/actions/JDBCPrepareStatementAction;
            0   34     1                  conn  Ljava/sql/Connection;
            3   34     2     autoGeneratedKeys  Z
            6   34     3  autoGeneratedIndexes  Z
            8    9     4                    ps  Ljava/sql/PreparedStatement;
           19   20     4                    ps  Ljava/sql/PreparedStatement;
           28   29     4                    ps  Ljava/sql/PreparedStatement;
           33   34     4                    ps  Ljava/sql/PreparedStatement;
           11   32     5               indexes  Lio/vertx/core/json/JsonArray;
           13   19     6                  keys  [I
           14   18     7                     i  I
           22   28     6                  keys  [Ljava/lang/String;
           23   27     7                     i  I
           31   32     6                     e  Ljava/lang/RuntimeException;
      Exception table:
        from    to  target  type
          11    30      30  Class java.lang.RuntimeException
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
      Name  Flags
      conn  

  public java.lang.Object execute(java.sql.Connection);
    descriptor: (Ljava/sql/Connection;)Ljava/lang/Object;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.jdbcclient.impl.actions.JDBCPrepareStatementAction.execute:(Ljava/sql/Connection;)Lio/vertx/sqlclient/impl/PreparedStatement;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.sql.SQLException
}
Signature: Lio/vertx/ext/jdbc/impl/actions/AbstractJDBCAction<Lio/vertx/sqlclient/impl/PreparedStatement;>;
SourceFile: "JDBCPrepareStatementAction.java"