public abstract class io.vertx.sqlclient.impl.SqlClientBase<C extends io.vertx.sqlclient.SqlClient> implements io.vertx.sqlclient.impl.SqlClientInternal, io.vertx.sqlclient.impl.command.CommandScheduler
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: io.vertx.sqlclient.impl.SqlClientBase
  super_class: java.lang.Object
{
  protected final io.vertx.sqlclient.impl.tracing.QueryTracer tracer;
    descriptor: Lio/vertx/sqlclient/impl/tracing/QueryTracer;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL

  protected final io.vertx.core.spi.metrics.ClientMetrics metrics;
    descriptor: Lio/vertx/core/spi/metrics/ClientMetrics;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL

  public void <init>(io.vertx.sqlclient.impl.tracing.QueryTracer, io.vertx.core.spi.metrics.ClientMetrics);
    descriptor: (Lio/vertx/sqlclient/impl/tracing/QueryTracer;Lio/vertx/core/spi/metrics/ClientMetrics;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.vertx.sqlclient.impl.SqlClientBase this
        start local 1 // io.vertx.sqlclient.impl.tracing.QueryTracer tracer
        start local 2 // io.vertx.core.spi.metrics.ClientMetrics metrics
         0: .line 45
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 46
            aload 0 /* this */
            aload 1 /* tracer */
            putfield io.vertx.sqlclient.impl.SqlClientBase.tracer:Lio/vertx/sqlclient/impl/tracing/QueryTracer;
         2: .line 47
            aload 0 /* this */
            aload 2 /* metrics */
            putfield io.vertx.sqlclient.impl.SqlClientBase.metrics:Lio/vertx/core/spi/metrics/ClientMetrics;
         3: .line 48
            return
        end local 2 // io.vertx.core.spi.metrics.ClientMetrics metrics
        end local 1 // io.vertx.sqlclient.impl.tracing.QueryTracer tracer
        end local 0 // io.vertx.sqlclient.impl.SqlClientBase this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Lio/vertx/sqlclient/impl/SqlClientBase<TC;>;
            0    4     1   tracer  Lio/vertx/sqlclient/impl/tracing/QueryTracer;
            0    4     2  metrics  Lio/vertx/core/spi/metrics/ClientMetrics;
    MethodParameters:
         Name  Flags
      tracer   
      metrics  

  public int appendQueryPlaceholder(java.lang.StringBuilder, int, int);
    descriptor: (Ljava/lang/StringBuilder;II)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // io.vertx.sqlclient.impl.SqlClientBase this
        start local 1 // java.lang.StringBuilder queryBuilder
        start local 2 // int index
        start local 3 // int current
         0: .line 52
            aload 1 /* queryBuilder */
            ldc "?"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         1: .line 53
            iload 3 /* current */
            ireturn
        end local 3 // int current
        end local 2 // int index
        end local 1 // java.lang.StringBuilder queryBuilder
        end local 0 // io.vertx.sqlclient.impl.SqlClientBase this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    2     0          this  Lio/vertx/sqlclient/impl/SqlClientBase<TC;>;
            0    2     1  queryBuilder  Ljava/lang/StringBuilder;
            0    2     2         index  I
            0    2     3       current  I
    MethodParameters:
              Name  Flags
      queryBuilder  
      index         
      current       

  protected abstract <T> io.vertx.core.impl.future.PromiseInternal<T> promise();
    descriptor: ()Lio/vertx/core/impl/future/PromiseInternal;
    flags: (0x0404) ACC_PROTECTED, ACC_ABSTRACT
    Signature: <T:Ljava/lang/Object;>()Lio/vertx/core/impl/future/PromiseInternal<TT;>;

  protected abstract <T> io.vertx.core.impl.future.PromiseInternal<T> promise(io.vertx.core.Handler<io.vertx.core.AsyncResult<T>>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/impl/future/PromiseInternal;
    flags: (0x0404) ACC_PROTECTED, ACC_ABSTRACT
    Signature: <T:Ljava/lang/Object;>(Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<TT;>;>;)Lio/vertx/core/impl/future/PromiseInternal<TT;>;
    MethodParameters:
         Name  Flags
      handler  

  public io.vertx.sqlclient.Query<io.vertx.sqlclient.RowSet<io.vertx.sqlclient.Row>> query(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/sqlclient/Query;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=3, args_size=2
        start local 0 // io.vertx.sqlclient.impl.SqlClientBase this
        start local 1 // java.lang.String sql
         0: .line 62
            new io.vertx.sqlclient.impl.QueryExecutor
            dup
            aload 0 /* this */
            getfield io.vertx.sqlclient.impl.SqlClientBase.tracer:Lio/vertx/sqlclient/impl/tracing/QueryTracer;
            aload 0 /* this */
            getfield io.vertx.sqlclient.impl.SqlClientBase.metrics:Lio/vertx/core/spi/metrics/ClientMetrics;
            getstatic io.vertx.sqlclient.impl.RowSetImpl.FACTORY:Ljava/util/function/Function;
            getstatic io.vertx.sqlclient.impl.RowSetImpl.COLLECTOR:Ljava/util/stream/Collector;
            invokespecial io.vertx.sqlclient.impl.QueryExecutor.<init>:(Lio/vertx/sqlclient/impl/tracing/QueryTracer;Lio/vertx/core/spi/metrics/ClientMetrics;Ljava/util/function/Function;Ljava/util/stream/Collector;)V
            astore 2 /* builder */
        start local 2 // io.vertx.sqlclient.impl.QueryExecutor builder
         1: .line 63
            new io.vertx.sqlclient.impl.SqlClientBase$QueryImpl
            dup
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual io.vertx.sqlclient.impl.SqlClientBase.autoCommit:()Z
            iconst_0
            aload 1 /* sql */
            aload 2 /* builder */
            invokespecial io.vertx.sqlclient.impl.SqlClientBase$QueryImpl.<init>:(Lio/vertx/sqlclient/impl/SqlClientBase;ZZLjava/lang/String;Lio/vertx/sqlclient/impl/QueryExecutor;)V
            areturn
        end local 2 // io.vertx.sqlclient.impl.QueryExecutor builder
        end local 1 // java.lang.String sql
        end local 0 // io.vertx.sqlclient.impl.SqlClientBase this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/sqlclient/impl/SqlClientBase<TC;>;
            0    2     1      sql  Ljava/lang/String;
            1    2     2  builder  Lio/vertx/sqlclient/impl/QueryExecutor<Lio/vertx/sqlclient/RowSet<Lio/vertx/sqlclient/Row;>;Lio/vertx/sqlclient/impl/RowSetImpl<Lio/vertx/sqlclient/Row;>;Lio/vertx/sqlclient/RowSet<Lio/vertx/sqlclient/Row;>;>;
    Signature: (Ljava/lang/String;)Lio/vertx/sqlclient/Query<Lio/vertx/sqlclient/RowSet<Lio/vertx/sqlclient/Row;>;>;
    MethodParameters:
      Name  Flags
      sql   

  public io.vertx.sqlclient.PreparedQuery<io.vertx.sqlclient.RowSet<io.vertx.sqlclient.Row>> preparedQuery(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/sqlclient/PreparedQuery;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=3, args_size=2
        start local 0 // io.vertx.sqlclient.impl.SqlClientBase this
        start local 1 // java.lang.String sql
         0: .line 68
            new io.vertx.sqlclient.impl.QueryExecutor
            dup
            aload 0 /* this */
            getfield io.vertx.sqlclient.impl.SqlClientBase.tracer:Lio/vertx/sqlclient/impl/tracing/QueryTracer;
            aload 0 /* this */
            getfield io.vertx.sqlclient.impl.SqlClientBase.metrics:Lio/vertx/core/spi/metrics/ClientMetrics;
            getstatic io.vertx.sqlclient.impl.RowSetImpl.FACTORY:Ljava/util/function/Function;
            getstatic io.vertx.sqlclient.impl.RowSetImpl.COLLECTOR:Ljava/util/stream/Collector;
            invokespecial io.vertx.sqlclient.impl.QueryExecutor.<init>:(Lio/vertx/sqlclient/impl/tracing/QueryTracer;Lio/vertx/core/spi/metrics/ClientMetrics;Ljava/util/function/Function;Ljava/util/stream/Collector;)V
            astore 2 /* builder */
        start local 2 // io.vertx.sqlclient.impl.QueryExecutor builder
         1: .line 69
            new io.vertx.sqlclient.impl.SqlClientBase$PreparedQueryImpl
            dup
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual io.vertx.sqlclient.impl.SqlClientBase.autoCommit:()Z
            iconst_0
            aload 1 /* sql */
            aload 2 /* builder */
            invokespecial io.vertx.sqlclient.impl.SqlClientBase$PreparedQueryImpl.<init>:(Lio/vertx/sqlclient/impl/SqlClientBase;ZZLjava/lang/String;Lio/vertx/sqlclient/impl/QueryExecutor;)V
            areturn
        end local 2 // io.vertx.sqlclient.impl.QueryExecutor builder
        end local 1 // java.lang.String sql
        end local 0 // io.vertx.sqlclient.impl.SqlClientBase this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/sqlclient/impl/SqlClientBase<TC;>;
            0    2     1      sql  Ljava/lang/String;
            1    2     2  builder  Lio/vertx/sqlclient/impl/QueryExecutor<Lio/vertx/sqlclient/RowSet<Lio/vertx/sqlclient/Row;>;Lio/vertx/sqlclient/impl/RowSetImpl<Lio/vertx/sqlclient/Row;>;Lio/vertx/sqlclient/RowSet<Lio/vertx/sqlclient/Row;>;>;
    Signature: (Ljava/lang/String;)Lio/vertx/sqlclient/PreparedQuery<Lio/vertx/sqlclient/RowSet<Lio/vertx/sqlclient/Row;>;>;
    MethodParameters:
      Name  Flags
      sql   

  boolean autoCommit();
    descriptor: ()Z
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.sqlclient.impl.SqlClientBase this
         0: .line 73
            iconst_1
            ireturn
        end local 0 // io.vertx.sqlclient.impl.SqlClientBase this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/sqlclient/impl/SqlClientBase<TC;>;
}
Signature: <C::Lio/vertx/sqlclient/SqlClient;>Ljava/lang/Object;Lio/vertx/sqlclient/impl/SqlClientInternal;Lio/vertx/sqlclient/impl/command/CommandScheduler;
SourceFile: "SqlClientBase.java"
NestMembers:
  io.vertx.sqlclient.impl.SqlClientBase$PreparedQueryImpl  io.vertx.sqlclient.impl.SqlClientBase$QueryImpl
InnerClasses:
  private PreparedQueryImpl = io.vertx.sqlclient.impl.SqlClientBase$PreparedQueryImpl of io.vertx.sqlclient.impl.SqlClientBase
  private QueryImpl = io.vertx.sqlclient.impl.SqlClientBase$QueryImpl of io.vertx.sqlclient.impl.SqlClientBase