| Modifier and Type | Method and Description |
|---|---|
static MySQLPool |
MySQLPool.pool(MySQLConnectOptions connectOptions,
PoolOptions poolOptions)
Create a connection pool to the MySQL server configured with the given
connectOptions and poolOptions. |
static MySQLPool |
MySQLPool.pool(String connectionUri)
Like
pool(String, PoolOptions) with a default poolOptions. |
static MySQLPool |
MySQLPool.pool(String connectionUri,
PoolOptions poolOptions)
|
static MySQLPool |
MySQLPool.pool(Vertx vertx,
MySQLConnectOptions connectOptions,
PoolOptions poolOptions)
Like
pool(MySQLConnectOptions, PoolOptions) with a specific Vertx instance. |
static MySQLPool |
MySQLPool.pool(Vertx vertx,
String connectionUri,
PoolOptions poolOptions)
|
<R> MySQLPool |
MySQLPool.preparedBatch(String sql,
List<Tuple> batch,
Collector<Row,?,R> collector,
Handler<AsyncResult<SqlResult<R>>> handler) |
MySQLPool |
MySQLPool.preparedBatch(String sql,
List<Tuple> batch,
Handler<AsyncResult<RowSet>> handler) |
<R> MySQLPool |
MySQLPool.preparedQuery(String sql,
Collector<Row,?,R> collector,
Handler<AsyncResult<SqlResult<R>>> handler) |
MySQLPool |
MySQLPool.preparedQuery(String sql,
Handler<AsyncResult<RowSet>> handler) |
<R> MySQLPool |
MySQLPool.preparedQuery(String sql,
Tuple arguments,
Collector<Row,?,R> collector,
Handler<AsyncResult<SqlResult<R>>> handler) |
MySQLPool |
MySQLPool.preparedQuery(String sql,
Tuple arguments,
Handler<AsyncResult<RowSet>> handler) |
<R> MySQLPool |
MySQLPool.query(String sql,
Collector<Row,?,R> collector,
Handler<AsyncResult<SqlResult<R>>> handler) |
MySQLPool |
MySQLPool.query(String sql,
Handler<AsyncResult<RowSet>> handler) |
Copyright © 2019 Eclipse. All rights reserved.