| 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
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 pool of SQL connections.
|
interface |
SqlConnection
A connection to database server.
|
interface |
Transaction
A transaction that allows to control the transaction and receive events.
|
| Modifier and Type | Method and Description |
|---|---|
<R> SqlClient |
SqlClient.preparedBatch(String sql,
List<Tuple> batch,
java.util.stream.Collector<Row,?,R> collector,
Handler<AsyncResult<SqlResult<R>>> handler)
Prepare and execute a createBatch.
|
SqlClient |
SqlClient.preparedBatch(String sql,
List<Tuple> batch,
Handler<AsyncResult<RowSet<Row>>> handler)
Prepare and execute a createBatch.
|
<R> SqlClient |
SqlClient.preparedQuery(String sql,
java.util.stream.Collector<Row,?,R> collector,
Handler<AsyncResult<SqlResult<R>>> handler)
Prepare and execute a query.
|
SqlClient |
SqlClient.preparedQuery(String sql,
Handler<AsyncResult<RowSet<Row>>> handler)
Prepare and execute a query.
|
<R> SqlClient |
SqlClient.preparedQuery(String sql,
Tuple arguments,
java.util.stream.Collector<Row,?,R> collector,
Handler<AsyncResult<SqlResult<R>>> handler)
Prepare and execute a query.
|
SqlClient |
SqlClient.preparedQuery(String sql,
Tuple arguments,
Handler<AsyncResult<RowSet<Row>>> handler)
Prepare and execute a query.
|
<R> SqlClient |
SqlClient.query(String sql,
java.util.stream.Collector<Row,?,R> collector,
Handler<AsyncResult<SqlResult<R>>> handler)
Execute a simple query.
|
SqlClient |
SqlClient.query(String sql,
Handler<AsyncResult<RowSet<Row>>> handler)
Execute a simple query.
|
Copyright © 2019 Eclipse. All rights reserved.