| Package | Description |
|---|---|
| io.vertx.mysqlclient | |
| io.vertx.pgclient | |
| io.vertx.reactivex.sqlclient | |
| io.vertx.rxjava.sqlclient | |
| io.vertx.sqlclient |
| Modifier and Type | Interface and Description |
|---|---|
interface |
MySQLConnection
An interface which represents a connection to MySQL server.
|
interface |
MySQLPool
A
pool of MySQL Connections. |
| Modifier and Type | Interface and Description |
|---|---|
interface |
PgConnection
A connection to Postgres.
|
interface |
PgPool
A
pool of PostgreSQL connections. |
| Modifier and Type | Method and Description |
|---|---|
SqlClient |
SqlClient.getDelegate() |
| Modifier and Type | Method and Description |
|---|---|
static SqlClient |
SqlClient.newInstance(SqlClient arg) |
| Constructor and Description |
|---|
SqlClient(SqlClient delegate) |
| Modifier and Type | Method and Description |
|---|---|
SqlClient |
SqlClient.getDelegate() |
| Modifier and Type | Method and Description |
|---|---|
static SqlClient |
SqlClient.newInstance(SqlClient arg) |
| Constructor and Description |
|---|
SqlClient(SqlClient delegate) |
| Modifier and Type | Interface and Description |
|---|---|
interface |
Pool
A connection pool which reuses a number of SQL connections.
|
interface |
SqlConnection
A connection to the database server.
|
| Modifier and Type | Method and Description |
|---|---|
default <T> Future<T> |
Pool.withTransaction(java.util.function.Function<SqlClient,Future<T>> function)
Like
Pool.withTransaction(Function, Handler) but returns a Future of the asynchronous result |
default <T> void |
Pool.withTransaction(java.util.function.Function<SqlClient,Future<T>> function,
Handler<AsyncResult<T>> handler)
Execute the given
function within a transaction. |
Copyright © 2020 Eclipse. All rights reserved.