public interface io.vertx.ext.jdbc.JDBCClient extends io.vertx.ext.sql.SQLClient
  minor version: 0
  major version: 59
  flags: flags: (0x0601) ACC_PUBLIC, ACC_INTERFACE, ACC_ABSTRACT
  this_class: io.vertx.ext.jdbc.JDBCClient
  super_class: java.lang.Object
{
  public static final java.lang.String DEFAULT_PROVIDER_CLASS;
    descriptor: Ljava/lang/String;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: "io.vertx.ext.jdbc.spi.impl.C3P0DataSourceProvider"

  public static final java.lang.String DEFAULT_DS_NAME;
    descriptor: Ljava/lang/String;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: "DEFAULT_DS"

  public static io.vertx.ext.jdbc.JDBCClient createNonShared(io.vertx.core.Vertx, io.vertx.core.json.JsonObject);
    descriptor: (Lio/vertx/core/Vertx;Lio/vertx/core/json/JsonObject;)Lio/vertx/ext/jdbc/JDBCClient;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // io.vertx.core.Vertx vertx
        start local 1 // io.vertx.core.json.JsonObject config
         0: .line 56
            new io.vertx.ext.jdbc.impl.JDBCClientImpl
            dup
            aload 0 /* vertx */
            aload 1 /* config */
            invokestatic java.util.UUID.randomUUID:()Ljava/util/UUID;
            invokevirtual java.util.UUID.toString:()Ljava/lang/String;
            invokespecial io.vertx.ext.jdbc.impl.JDBCClientImpl.<init>:(Lio/vertx/core/Vertx;Lio/vertx/core/json/JsonObject;Ljava/lang/String;)V
            areturn
        end local 1 // io.vertx.core.json.JsonObject config
        end local 0 // io.vertx.core.Vertx vertx
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0   vertx  Lio/vertx/core/Vertx;
            0    1     1  config  Lio/vertx/core/json/JsonObject;
    MethodParameters:
        Name  Flags
      vertx   
      config  

  public static io.vertx.ext.jdbc.JDBCClient createShared(io.vertx.core.Vertx, io.vertx.core.json.JsonObject, java.lang.String);
    descriptor: (Lio/vertx/core/Vertx;Lio/vertx/core/json/JsonObject;Ljava/lang/String;)Lio/vertx/ext/jdbc/JDBCClient;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // io.vertx.core.Vertx vertx
        start local 1 // io.vertx.core.json.JsonObject config
        start local 2 // java.lang.String dataSourceName
         0: .line 69
            new io.vertx.ext.jdbc.impl.JDBCClientImpl
            dup
            aload 0 /* vertx */
            aload 1 /* config */
            aload 2 /* dataSourceName */
            invokespecial io.vertx.ext.jdbc.impl.JDBCClientImpl.<init>:(Lio/vertx/core/Vertx;Lio/vertx/core/json/JsonObject;Ljava/lang/String;)V
            areturn
        end local 2 // java.lang.String dataSourceName
        end local 1 // io.vertx.core.json.JsonObject config
        end local 0 // io.vertx.core.Vertx vertx
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    1     0           vertx  Lio/vertx/core/Vertx;
            0    1     1          config  Lio/vertx/core/json/JsonObject;
            0    1     2  dataSourceName  Ljava/lang/String;
    MethodParameters:
                Name  Flags
      vertx           
      config          
      dataSourceName  

  public static io.vertx.ext.jdbc.JDBCClient createShared(io.vertx.core.Vertx, io.vertx.core.json.JsonObject);
    descriptor: (Lio/vertx/core/Vertx;Lio/vertx/core/json/JsonObject;)Lio/vertx/ext/jdbc/JDBCClient;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // io.vertx.core.Vertx vertx
        start local 1 // io.vertx.core.json.JsonObject config
         0: .line 79
            new io.vertx.ext.jdbc.impl.JDBCClientImpl
            dup
            aload 0 /* vertx */
            aload 1 /* config */
            ldc "DEFAULT_DS"
            invokespecial io.vertx.ext.jdbc.impl.JDBCClientImpl.<init>:(Lio/vertx/core/Vertx;Lio/vertx/core/json/JsonObject;Ljava/lang/String;)V
            areturn
        end local 1 // io.vertx.core.json.JsonObject config
        end local 0 // io.vertx.core.Vertx vertx
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0   vertx  Lio/vertx/core/Vertx;
            0    1     1  config  Lio/vertx/core/json/JsonObject;
    MethodParameters:
        Name  Flags
      vertx   
      config  

  public static io.vertx.ext.jdbc.JDBCClient create(io.vertx.core.Vertx, javax.sql.DataSource);
    descriptor: (Lio/vertx/core/Vertx;Ljavax/sql/DataSource;)Lio/vertx/ext/jdbc/JDBCClient;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // io.vertx.core.Vertx vertx
        start local 1 // javax.sql.DataSource dataSource
         0: .line 91
            new io.vertx.ext.jdbc.impl.JDBCClientImpl
            dup
            aload 0 /* vertx */
            aload 1 /* dataSource */
            invokespecial io.vertx.ext.jdbc.impl.JDBCClientImpl.<init>:(Lio/vertx/core/Vertx;Ljavax/sql/DataSource;)V
            areturn
        end local 1 // javax.sql.DataSource dataSource
        end local 0 // io.vertx.core.Vertx vertx
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0       vertx  Lio/vertx/core/Vertx;
            0    1     1  dataSource  Ljavax/sql/DataSource;
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.GenIgnore()
    RuntimeVisibleTypeAnnotations: 
      METHOD_RETURN
        io.vertx.codegen.annotations.GenIgnore()
    MethodParameters:
            Name  Flags
      vertx       
      dataSource  
}
SourceFile: "JDBCClient.java"
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.VertxGen()