Modifier and Type | Interface and Description |
---|---|
interface |
DB2Pool
A pool of DB2 connections.
|
Modifier and Type | Interface and Description |
---|---|
interface |
JDBCPool
JDBCPool is the interface that allows using the Sql Client API with plain JDBC.
|
Modifier and Type | Interface and Description |
---|---|
interface |
MSSQLPool
A
pool of SQL Server connections . |
Modifier and Type | Interface and Description |
---|---|
interface |
MySQLPool
A
pool of MySQL Connections . |
Modifier and Type | Interface and Description |
---|---|
interface |
PgPool
A
pool of PostgreSQL connections . |
Modifier and Type | Method and Description |
---|---|
Pool |
Pool.getDelegate() |
Modifier and Type | Method and Description |
---|---|
static Pool |
Pool.newInstance(Pool arg) |
Constructor and Description |
---|
Pool(Pool delegate) |
Modifier and Type | Method and Description |
---|---|
Pool |
Pool.getDelegate() |
Modifier and Type | Method and Description |
---|---|
static Pool |
Pool.newInstance(Pool arg) |
Constructor and Description |
---|
Pool(Pool delegate) |
Modifier and Type | Method and Description |
---|---|
Pool |
Pool.getDelegate() |
Modifier and Type | Method and Description |
---|---|
static Pool |
Pool.newInstance(Pool arg) |
Constructor and Description |
---|
Pool(Pool delegate) |
Modifier and Type | Method and Description |
---|---|
Pool |
Pool.connectHandler(Handler<SqlConnection> handler)
Set an handler called when the pool has established a connection to the database.
|
Pool |
Pool.connectionProvider(java.util.function.Function<Context,Future<SqlConnection>> provider)
Replace the default pool connection provider, the new
provider returns a future connection for a
given Context . |
static Pool |
Pool.pool(SqlConnectOptions connectOptions)
Like
pool(SqlConnectOptions, PoolOptions) with default options. |
static Pool |
Pool.pool(SqlConnectOptions database,
PoolOptions options)
Like
pool(Vertx, SqlConnectOptions, PoolOptions) with a Vert.x instance created automatically. |
static Pool |
Pool.pool(Vertx vertx,
SqlConnectOptions database,
PoolOptions options)
Create a connection pool to the
database with the given options . |
Modifier and Type | Method and Description |
---|---|
Pool |
Driver.createPool(Vertx vertx,
List<? extends SqlConnectOptions> databases,
PoolOptions options)
Create a connection pool to the database configured with the given
connectOptions and poolOptions . |
Copyright © 2021 Eclipse. All rights reserved.