Uses of Class
io.vertx.reactivex.sqlclient.Pool
-
-
Uses of Pool in io.vertx.reactivex.db2client
Subclasses of Pool in io.vertx.reactivex.db2client Modifier and Type Class Description class
DB2Pool
A pool of DB2 connections. -
Uses of Pool in io.vertx.reactivex.jdbcclient
Subclasses of Pool in io.vertx.reactivex.jdbcclient Modifier and Type Class Description class
JDBCPool
JDBCPool is the interface that allows using the Sql Client API with plain JDBC. -
Uses of Pool in io.vertx.reactivex.mssqlclient
Subclasses of Pool in io.vertx.reactivex.mssqlclient Modifier and Type Class Description class
MSSQLPool
A ofSQL Server connections
. -
Uses of Pool in io.vertx.reactivex.mysqlclient
Subclasses of Pool in io.vertx.reactivex.mysqlclient Modifier and Type Class Description class
MySQLPool
A ofMySQL Connections
. -
Uses of Pool in io.vertx.reactivex.oracleclient
Subclasses of Pool in io.vertx.reactivex.oracleclient Modifier and Type Class Description class
OraclePool
Represents a pool of connection to interact with an Oracle database. -
Uses of Pool in io.vertx.reactivex.pgclient
Subclasses of Pool in io.vertx.reactivex.pgclient Modifier and Type Class Description class
PgPool
A ofPostgreSQL connections
. -
Uses of Pool in io.vertx.reactivex.sqlclient
Fields in io.vertx.reactivex.sqlclient with type parameters of type Pool Modifier and Type Field Description static TypeArg<Pool>
Pool. __TYPE_ARG
Methods in io.vertx.reactivex.sqlclient that return Pool Modifier and Type Method Description Pool
Pool. connectHandler(Handler<SqlConnection> handler)
Set an handler called when the pool has established a connection to the database.Pool
Pool. connectionProvider(io.reactivex.functions.Function<Context,io.reactivex.Single<SqlConnection>> provider)
Replace the default pool connection provider, the newprovider
returns a future connection for a given .Pool
Pool. connectionProvider(Function<Context,Future<SqlConnection>> provider)
Replace the default pool connection provider, the newprovider
returns a future connection for a given .static Pool
Pool. newInstance(Pool arg)
static Pool
Pool. pool(Vertx vertx, SqlConnectOptions database, PoolOptions options)
Create a connection pool to thedatabase
with the givenoptions
.static Pool
Pool. pool(SqlConnectOptions connectOptions)
Likepool(io.vertx.sqlclient.SqlConnectOptions)
with default options.static Pool
Pool. pool(SqlConnectOptions database, PoolOptions options)
Likepool(io.vertx.sqlclient.SqlConnectOptions)
with a Vert.x instance created automatically.
-