Package | Description |
---|---|
io.vertx.sqlclient |
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,
Collector<Row,?,R> collector,
io.vertx.core.Handler<io.vertx.core.AsyncResult<SqlResult<R>>> handler)
Prepare and execute a createBatch.
|
SqlClient |
SqlClient.preparedBatch(String sql,
List<Tuple> batch,
io.vertx.core.Handler<io.vertx.core.AsyncResult<RowSet<Row>>> handler)
Prepare and execute a createBatch.
|
<R> SqlClient |
SqlClient.preparedQuery(String sql,
Collector<Row,?,R> collector,
io.vertx.core.Handler<io.vertx.core.AsyncResult<SqlResult<R>>> handler)
Prepare and execute a query.
|
SqlClient |
SqlClient.preparedQuery(String sql,
io.vertx.core.Handler<io.vertx.core.AsyncResult<RowSet<Row>>> handler)
Prepare and execute a query.
|
<R> SqlClient |
SqlClient.preparedQuery(String sql,
Tuple arguments,
Collector<Row,?,R> collector,
io.vertx.core.Handler<io.vertx.core.AsyncResult<SqlResult<R>>> handler)
Prepare and execute a query.
|
SqlClient |
SqlClient.preparedQuery(String sql,
Tuple arguments,
io.vertx.core.Handler<io.vertx.core.AsyncResult<RowSet<Row>>> handler)
Prepare and execute a query.
|
<R> SqlClient |
SqlClient.query(String sql,
Collector<Row,?,R> collector,
io.vertx.core.Handler<io.vertx.core.AsyncResult<SqlResult<R>>> handler)
Execute a simple query.
|
SqlClient |
SqlClient.query(String sql,
io.vertx.core.Handler<io.vertx.core.AsyncResult<RowSet<Row>>> handler)
Execute a simple query.
|
Copyright © 2019 Eclipse. All rights reserved.