public class io.vertx.jdbcclient.impl.actions.JDBCPreparedBatch<C, R> extends io.vertx.jdbcclient.impl.actions.JDBCQueryAction<C, R>
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.jdbcclient.impl.actions.JDBCPreparedBatch
  super_class: io.vertx.jdbcclient.impl.actions.JDBCQueryAction
{
  private final io.vertx.sqlclient.impl.command.ExtendedQueryCommand<R> query;
    descriptor: Lio/vertx/sqlclient/impl/command/ExtendedQueryCommand;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Lio/vertx/sqlclient/impl/command/ExtendedQueryCommand<TR;>;

  private final java.util.List<io.vertx.sqlclient.Tuple> listParams;
    descriptor: Ljava/util/List;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/List<Lio/vertx/sqlclient/Tuple;>;

  public void <init>(io.vertx.ext.jdbc.impl.actions.JDBCStatementHelper, io.vertx.ext.sql.SQLOptions, io.vertx.sqlclient.impl.command.ExtendedQueryCommand<R>, java.util.stream.Collector<io.vertx.sqlclient.Row, C, R>, java.util.List<io.vertx.sqlclient.Tuple>);
    descriptor: (Lio/vertx/ext/jdbc/impl/actions/JDBCStatementHelper;Lio/vertx/ext/sql/SQLOptions;Lio/vertx/sqlclient/impl/command/ExtendedQueryCommand;Ljava/util/stream/Collector;Ljava/util/List;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=6, args_size=6
        start local 0 // io.vertx.jdbcclient.impl.actions.JDBCPreparedBatch this
        start local 1 // io.vertx.ext.jdbc.impl.actions.JDBCStatementHelper helper
        start local 2 // io.vertx.ext.sql.SQLOptions options
        start local 3 // io.vertx.sqlclient.impl.command.ExtendedQueryCommand query
        start local 4 // java.util.stream.Collector collector
        start local 5 // java.util.List listParams
         0: .line 44
            aload 0 /* this */
            aload 1 /* helper */
            aload 2 /* options */
            aload 4 /* collector */
            invokespecial io.vertx.jdbcclient.impl.actions.JDBCQueryAction.<init>:(Lio/vertx/ext/jdbc/impl/actions/JDBCStatementHelper;Lio/vertx/ext/sql/SQLOptions;Ljava/util/stream/Collector;)V
         1: .line 45
            aload 0 /* this */
            aload 3 /* query */
            putfield io.vertx.jdbcclient.impl.actions.JDBCPreparedBatch.query:Lio/vertx/sqlclient/impl/command/ExtendedQueryCommand;
         2: .line 46
            aload 0 /* this */
            aload 5 /* listParams */
            putfield io.vertx.jdbcclient.impl.actions.JDBCPreparedBatch.listParams:Ljava/util/List;
         3: .line 47
            return
        end local 5 // java.util.List listParams
        end local 4 // java.util.stream.Collector collector
        end local 3 // io.vertx.sqlclient.impl.command.ExtendedQueryCommand query
        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.JDBCPreparedBatch this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    4     0        this  Lio/vertx/jdbcclient/impl/actions/JDBCPreparedBatch<TC;TR;>;
            0    4     1      helper  Lio/vertx/ext/jdbc/impl/actions/JDBCStatementHelper;
            0    4     2     options  Lio/vertx/ext/sql/SQLOptions;
            0    4     3       query  Lio/vertx/sqlclient/impl/command/ExtendedQueryCommand<TR;>;
            0    4     4   collector  Ljava/util/stream/Collector<Lio/vertx/sqlclient/Row;TC;TR;>;
            0    4     5  listParams  Ljava/util/List<Lio/vertx/sqlclient/Tuple;>;
    Signature: (Lio/vertx/ext/jdbc/impl/actions/JDBCStatementHelper;Lio/vertx/ext/sql/SQLOptions;Lio/vertx/sqlclient/impl/command/ExtendedQueryCommand<TR;>;Ljava/util/stream/Collector<Lio/vertx/sqlclient/Row;TC;TR;>;Ljava/util/List<Lio/vertx/sqlclient/Tuple;>;)V
    MethodParameters:
            Name  Flags
      helper      
      options     
      query       
      collector   
      listParams  

  public io.vertx.jdbcclient.impl.actions.JDBCResponse<R> execute(java.sql.Connection);
    descriptor: (Ljava/sql/Connection;)Lio/vertx/jdbcclient/impl/actions/JDBCResponse;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=7, args_size=2
        start local 0 // io.vertx.jdbcclient.impl.actions.JDBCPreparedBatch this
        start local 1 // java.sql.Connection conn
         0: .line 51
            aconst_null
            astore 2
            aconst_null
            astore 3
         1: aload 0 /* this */
            aload 1 /* conn */
            invokevirtual io.vertx.jdbcclient.impl.actions.JDBCPreparedBatch.prepare:(Ljava/sql/Connection;)Ljava/sql/PreparedStatement;
            astore 4 /* ps */
        start local 4 // java.sql.PreparedStatement ps
         2: .line 52
            aload 0 /* this */
            getfield io.vertx.jdbcclient.impl.actions.JDBCPreparedBatch.listParams:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 6
            goto 6
      StackMap locals: io.vertx.jdbcclient.impl.actions.JDBCPreparedBatch java.sql.Connection java.lang.Throwable java.lang.Throwable java.sql.PreparedStatement top java.util.Iterator
      StackMap stack:
         3: aload 6
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast io.vertx.sqlclient.Tuple
            astore 5 /* params */
        start local 5 // io.vertx.sqlclient.Tuple params
         4: .line 53
            aload 0 /* this */
            aload 4 /* ps */
            aload 1 /* conn */
            aload 5 /* params */
            invokevirtual io.vertx.jdbcclient.impl.actions.JDBCPreparedBatch.fillStatement:(Ljava/sql/PreparedStatement;Ljava/sql/Connection;Lio/vertx/sqlclient/Tuple;)V
         5: .line 54
            aload 4 /* ps */
            invokeinterface java.sql.PreparedStatement.addBatch:()V
        end local 5 // io.vertx.sqlclient.Tuple params
         6: .line 52
      StackMap locals:
      StackMap stack:
            aload 6
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 3
         7: .line 56
            aload 0 /* this */
            aload 4 /* ps */
            aload 4 /* ps */
            invokeinterface java.sql.PreparedStatement.executeBatch:()[I
            iconst_1
            invokevirtual io.vertx.jdbcclient.impl.actions.JDBCPreparedBatch.decode:(Ljava/sql/Statement;[IZ)Lio/vertx/jdbcclient/impl/actions/JDBCResponse;
         8: .line 57
            aload 4 /* ps */
            ifnull 9
            aload 4 /* ps */
            invokeinterface java.sql.PreparedStatement.close:()V
         9: .line 56
      StackMap locals: io.vertx.jdbcclient.impl.actions.JDBCPreparedBatch java.sql.Connection java.lang.Throwable java.lang.Throwable java.sql.PreparedStatement
      StackMap stack: io.vertx.jdbcclient.impl.actions.JDBCResponse
            areturn
      StackMap locals:
      StackMap stack: java.lang.Throwable
        10: astore 2
        11: .line 57
            aload 4 /* ps */
            ifnull 12
            aload 4 /* ps */
            invokeinterface java.sql.PreparedStatement.close:()V
        end local 4 // java.sql.PreparedStatement ps
      StackMap locals:
      StackMap stack:
        12: aload 2
            athrow
      StackMap locals:
      StackMap stack: java.lang.Throwable
        13: astore 3
            aload 2
            ifnonnull 14
            aload 3
            astore 2
            goto 15
      StackMap locals:
      StackMap stack:
        14: aload 2
            aload 3
            if_acmpeq 15
            aload 2
            aload 3
            invokevirtual java.lang.Throwable.addSuppressed:(Ljava/lang/Throwable;)V
      StackMap locals:
      StackMap stack:
        15: aload 2
            athrow
        end local 1 // java.sql.Connection conn
        end local 0 // io.vertx.jdbcclient.impl.actions.JDBCPreparedBatch this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   16     0    this  Lio/vertx/jdbcclient/impl/actions/JDBCPreparedBatch<TC;TR;>;
            0   16     1    conn  Ljava/sql/Connection;
            2   12     4      ps  Ljava/sql/PreparedStatement;
            4    6     5  params  Lio/vertx/sqlclient/Tuple;
      Exception table:
        from    to  target  type
           2     8      10  any
           1     9      13  any
          10    13      13  any
    Exceptions:
      throws java.sql.SQLException
    Signature: (Ljava/sql/Connection;)Lio/vertx/jdbcclient/impl/actions/JDBCResponse<TR;>;
    MethodParameters:
      Name  Flags
      conn  

  private java.sql.PreparedStatement prepare(java.sql.Connection);
    descriptor: (Ljava/sql/Connection;)Ljava/sql/PreparedStatement;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=8, args_size=2
        start local 0 // io.vertx.jdbcclient.impl.actions.JDBCPreparedBatch this
        start local 1 // java.sql.Connection conn
         0: .line 62
            aload 0 /* this */
            getfield io.vertx.jdbcclient.impl.actions.JDBCPreparedBatch.query:Lio/vertx/sqlclient/impl/command/ExtendedQueryCommand;
            invokevirtual io.vertx.sqlclient.impl.command.ExtendedQueryCommand.sql:()Ljava/lang/String;
            astore 2 /* sql */
        start local 2 // java.lang.String sql
         1: .line 64
            aload 0 /* this */
            getfield io.vertx.jdbcclient.impl.actions.JDBCPreparedBatch.options:Lio/vertx/ext/sql/SQLOptions;
            ifnull 2
            aload 0 /* this */
            getfield io.vertx.jdbcclient.impl.actions.JDBCPreparedBatch.options:Lio/vertx/ext/sql/SQLOptions;
            invokevirtual io.vertx.ext.sql.SQLOptions.isAutoGeneratedKeys:()Z
            ifne 2
            iconst_0
            goto 3
      StackMap locals: java.lang.String
      StackMap stack:
         2: iconst_1
      StackMap locals:
      StackMap stack: int
         3: istore 3 /* autoGeneratedKeys */
        start local 3 // boolean autoGeneratedKeys
         4: .line 65
            aload 0 /* this */
            getfield io.vertx.jdbcclient.impl.actions.JDBCPreparedBatch.options:Lio/vertx/ext/sql/SQLOptions;
            ifnull 5
            aload 0 /* this */
            getfield io.vertx.jdbcclient.impl.actions.JDBCPreparedBatch.options:Lio/vertx/ext/sql/SQLOptions;
            invokevirtual io.vertx.ext.sql.SQLOptions.getAutoGeneratedKeysIndexes:()Lio/vertx/core/json/JsonArray;
            ifnull 5
            iconst_1
            goto 6
      StackMap locals: int
      StackMap stack:
         5: iconst_0
      StackMap locals:
      StackMap stack: int
         6: istore 4 /* autoGeneratedIndexes */
        start local 4 // boolean autoGeneratedIndexes
         7: .line 67
            iload 3 /* autoGeneratedKeys */
            ifeq 9
            iload 4 /* autoGeneratedIndexes */
            ifne 9
         8: .line 68
            aload 1 /* conn */
            aload 2 /* sql */
            iconst_1
            invokeinterface java.sql.Connection.prepareStatement:(Ljava/lang/String;I)Ljava/sql/PreparedStatement;
            areturn
         9: .line 69
      StackMap locals: int
      StackMap stack:
            iload 4 /* autoGeneratedIndexes */
            ifeq 32
        10: .line 71
            aload 0 /* this */
            getfield io.vertx.jdbcclient.impl.actions.JDBCPreparedBatch.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 73
            aload 5 /* indexes */
            iconst_0
            invokevirtual io.vertx.core.json.JsonArray.getValue:(I)Ljava/lang/Object;
            instanceof java.lang.Number
            ifeq 20
        12: .line 74
            aload 5 /* indexes */
            invokevirtual io.vertx.core.json.JsonArray.size:()I
            newarray 10
            astore 6 /* keys */
        start local 6 // int[] keys
        13: .line 75
            iconst_0
            istore 7 /* i */
        start local 7 // int i
        14: goto 17
        15: .line 76
      StackMap locals: 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 75
            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 78
            aload 1 /* conn */
            aload 2 /* sql */
            aload 6 /* keys */
            invokeinterface java.sql.Connection.prepareStatement:(Ljava/lang/String;[I)Ljava/sql/PreparedStatement;
        19: areturn
        end local 6 // int[] keys
        20: .line 79
      StackMap locals:
      StackMap stack:
            aload 5 /* indexes */
            iconst_0
            invokevirtual io.vertx.core.json.JsonArray.getValue:(I)Ljava/lang/Object;
            instanceof java.lang.String
            ifeq 29
        21: .line 80
            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 81
            iconst_0
            istore 7 /* i */
        start local 7 // int i
        23: goto 26
        24: .line 82
      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 81
            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 84
            aload 1 /* conn */
            aload 2 /* sql */
            aload 6 /* keys */
            invokeinterface java.sql.Connection.prepareStatement:(Ljava/lang/String;[Ljava/lang/String;)Ljava/sql/PreparedStatement;
        28: areturn
        end local 6 // java.lang.String[] keys
        29: .line 86
      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 88
      StackMap locals:
      StackMap stack: java.lang.RuntimeException
            astore 6 /* e */
        start local 6 // java.lang.RuntimeException e
        31: .line 90
            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 93
      StackMap locals:
      StackMap stack:
            aload 1 /* conn */
            aload 2 /* sql */
            invokeinterface java.sql.Connection.prepareStatement:(Ljava/lang/String;)Ljava/sql/PreparedStatement;
            areturn
        end local 4 // boolean autoGeneratedIndexes
        end local 3 // boolean autoGeneratedKeys
        end local 2 // java.lang.String sql
        end local 1 // java.sql.Connection conn
        end local 0 // io.vertx.jdbcclient.impl.actions.JDBCPreparedBatch this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0   33     0                  this  Lio/vertx/jdbcclient/impl/actions/JDBCPreparedBatch<TC;TR;>;
            0   33     1                  conn  Ljava/sql/Connection;
            1   33     2                   sql  Ljava/lang/String;
            4   33     3     autoGeneratedKeys  Z
            7   33     4  autoGeneratedIndexes  Z
           11   32     5               indexes  Lio/vertx/core/json/JsonArray;
           13   20     6                  keys  [I
           14   18     7                     i  I
           22   29     6                  keys  [Ljava/lang/String;
           23   27     7                     i  I
           31   32     6                     e  Ljava/lang/RuntimeException;
      Exception table:
        from    to  target  type
          11    19      30  Class java.lang.RuntimeException
          20    28      30  Class java.lang.RuntimeException
          29    30      30  Class java.lang.RuntimeException
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
      Name  Flags
      conn  

  private void fillStatement(java.sql.PreparedStatement, java.sql.Connection, io.vertx.sqlclient.Tuple);
    descriptor: (Ljava/sql/PreparedStatement;Ljava/sql/Connection;Lio/vertx/sqlclient/Tuple;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=6, args_size=4
        start local 0 // io.vertx.jdbcclient.impl.actions.JDBCPreparedBatch this
        start local 1 // java.sql.PreparedStatement ps
        start local 2 // java.sql.Connection conn
        start local 3 // io.vertx.sqlclient.Tuple params
         0: .line 99
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         1: goto 7
         2: .line 101
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            aload 2 /* conn */
            aload 3 /* params */
            iload 4 /* i */
            invokeinterface io.vertx.sqlclient.Tuple.getValue:(I)Ljava/lang/Object;
            invokevirtual io.vertx.jdbcclient.impl.actions.JDBCPreparedBatch.adaptType:(Ljava/sql/Connection;Ljava/lang/Object;)Ljava/lang/Object;
            astore 5 /* value */
        start local 5 // java.lang.Object value
         3: .line 103
            aload 5 /* value */
            instanceof io.vertx.jdbcclient.SqlOutParam
            ifeq 5
         4: .line 104
            new java.sql.SQLException
            dup
            ldc "{out} parameters are not supported in batch mode"
            invokespecial java.sql.SQLException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 106
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 1 /* ps */
            iload 4 /* i */
            iconst_1
            iadd
            aload 5 /* value */
            invokeinterface java.sql.PreparedStatement.setObject:(ILjava/lang/Object;)V
        end local 5 // java.lang.Object value
         6: .line 99
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
         7: iload 4 /* i */
            aload 3 /* params */
            invokeinterface io.vertx.sqlclient.Tuple.size:()I
            if_icmplt 2
        end local 4 // int i
         8: .line 109
            return
        end local 3 // io.vertx.sqlclient.Tuple params
        end local 2 // java.sql.Connection conn
        end local 1 // java.sql.PreparedStatement ps
        end local 0 // io.vertx.jdbcclient.impl.actions.JDBCPreparedBatch this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    9     0    this  Lio/vertx/jdbcclient/impl/actions/JDBCPreparedBatch<TC;TR;>;
            0    9     1      ps  Ljava/sql/PreparedStatement;
            0    9     2    conn  Ljava/sql/Connection;
            0    9     3  params  Lio/vertx/sqlclient/Tuple;
            1    8     4       i  I
            3    6     5   value  Ljava/lang/Object;
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
        Name  Flags
      ps      
      conn    
      params  

  private java.lang.Object adaptType(java.sql.Connection, java.lang.Object);
    descriptor: (Ljava/sql/Connection;Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // io.vertx.jdbcclient.impl.actions.JDBCPreparedBatch this
        start local 1 // java.sql.Connection conn
        start local 2 // java.lang.Object value
         0: .line 114
            aload 2 /* value */
            instanceof java.time.LocalTime
            ifeq 3
         1: .line 116
            aload 2 /* value */
            checkcast java.time.LocalTime
            astore 3 /* time */
        start local 3 // java.time.LocalTime time
         2: .line 117
            aload 3 /* time */
            invokestatic java.sql.Time.valueOf:(Ljava/time/LocalTime;)Ljava/sql/Time;
            areturn
        end local 3 // java.time.LocalTime time
         3: .line 118
      StackMap locals:
      StackMap stack:
            aload 2 /* value */
            instanceof java.time.LocalDate
            ifeq 6
         4: .line 120
            aload 2 /* value */
            checkcast java.time.LocalDate
            astore 3 /* date */
        start local 3 // java.time.LocalDate date
         5: .line 121
            aload 3 /* date */
            invokestatic java.sql.Date.valueOf:(Ljava/time/LocalDate;)Ljava/sql/Date;
            areturn
        end local 3 // java.time.LocalDate date
         6: .line 122
      StackMap locals:
      StackMap stack:
            aload 2 /* value */
            instanceof java.time.Instant
            ifeq 9
         7: .line 124
            aload 2 /* value */
            checkcast java.time.Instant
            astore 3 /* timestamp */
        start local 3 // java.time.Instant timestamp
         8: .line 125
            aload 3 /* timestamp */
            invokestatic java.sql.Timestamp.from:(Ljava/time/Instant;)Ljava/sql/Timestamp;
            areturn
        end local 3 // java.time.Instant timestamp
         9: .line 126
      StackMap locals:
      StackMap stack:
            aload 2 /* value */
            instanceof io.vertx.core.buffer.Buffer
            ifeq 12
        10: .line 128
            aload 2 /* value */
            checkcast io.vertx.core.buffer.Buffer
            astore 3 /* blob */
        start local 3 // io.vertx.core.buffer.Buffer blob
        11: .line 129
            aload 1 /* conn */
            invokeinterface java.sql.Connection.createBlob:()Ljava/sql/Blob;
            lconst_0
            aload 3 /* blob */
            invokeinterface io.vertx.core.buffer.Buffer.getBytes:()[B
            invokeinterface java.sql.Blob.setBytes:(J[B)I
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            areturn
        end local 3 // io.vertx.core.buffer.Buffer blob
        12: .line 132
      StackMap locals:
      StackMap stack:
            aload 2 /* value */
            areturn
        end local 2 // java.lang.Object value
        end local 1 // java.sql.Connection conn
        end local 0 // io.vertx.jdbcclient.impl.actions.JDBCPreparedBatch this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   13     0       this  Lio/vertx/jdbcclient/impl/actions/JDBCPreparedBatch<TC;TR;>;
            0   13     1       conn  Ljava/sql/Connection;
            0   13     2      value  Ljava/lang/Object;
            2    3     3       time  Ljava/time/LocalTime;
            5    6     3       date  Ljava/time/LocalDate;
            8    9     3  timestamp  Ljava/time/Instant;
           11   12     3       blob  Lio/vertx/core/buffer/Buffer;
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
       Name  Flags
      conn   
      value  

  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.JDBCPreparedBatch.execute:(Ljava/sql/Connection;)Lio/vertx/jdbcclient/impl/actions/JDBCResponse;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.sql.SQLException
}
Signature: <C:Ljava/lang/Object;R:Ljava/lang/Object;>Lio/vertx/jdbcclient/impl/actions/JDBCQueryAction<TC;TR;>;
SourceFile: "JDBCPreparedBatch.java"