| 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 |
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 |
|---|---|
<R> Pool |
Pool.preparedBatch(String sql,
List<Tuple> batch,
java.util.stream.Collector<Row,?,R> collector,
Handler<AsyncResult<SqlResult<R>>> handler) |
Pool |
Pool.preparedBatch(String sql,
List<Tuple> batch,
Handler<AsyncResult<RowSet<Row>>> handler) |
<R> Pool |
Pool.preparedQuery(String sql,
java.util.stream.Collector<Row,?,R> collector,
Handler<AsyncResult<SqlResult<R>>> handler) |
Pool |
Pool.preparedQuery(String sql,
Handler<AsyncResult<RowSet<Row>>> handler) |
<R> Pool |
Pool.preparedQuery(String sql,
Tuple arguments,
java.util.stream.Collector<Row,?,R> collector,
Handler<AsyncResult<SqlResult<R>>> handler) |
Pool |
Pool.preparedQuery(String sql,
Tuple arguments,
Handler<AsyncResult<RowSet<Row>>> handler) |
<R> Pool |
Pool.query(String sql,
java.util.stream.Collector<Row,?,R> collector,
Handler<AsyncResult<SqlResult<R>>> handler) |
Pool |
Pool.query(String sql,
Handler<AsyncResult<RowSet<Row>>> handler) |
Copyright © 2019 Eclipse. All rights reserved.