public interface PgPool extends Pool
| Modifier and Type | Method and Description |
|---|---|
static PgPool |
pool()
Like
pool(PoolOptions) with a default poolOptions. |
static PgPool |
pool(PgConnectOptions connectOptions,
PoolOptions poolOptions)
Create a connection pool to the database configured with the given
connectOptions and poolOptions. |
static PgPool |
pool(PoolOptions poolOptions)
Like
pool(PgConnectOptions, PoolOptions) with connectOptions build from the environment variables. |
static PgPool |
pool(String connectionUri)
Like
pool(String, PoolOptions) with a default poolOptions. |
static PgPool |
pool(String connectionUri,
PoolOptions poolOptions)
|
static PgPool |
pool(Vertx vertx,
PgConnectOptions connectOptions,
PoolOptions poolOptions)
Like
pool(PgConnectOptions, PoolOptions) with a specific Vertx instance. |
static PgPool |
pool(Vertx vertx,
PoolOptions poolOptions)
Like
pool(Vertx, PgConnectOptions, PoolOptions) with connectOptions build from the environment variables. |
static PgPool |
pool(Vertx vertx,
String connectionUri,
PoolOptions poolOptions)
|
<R> PgPool |
preparedBatch(String sql,
List<Tuple> batch,
Collector<Row,?,R> collector,
Handler<AsyncResult<SqlResult<R>>> handler) |
PgPool |
preparedBatch(String sql,
List<Tuple> batch,
Handler<AsyncResult<RowSet>> handler) |
<R> PgPool |
preparedQuery(String sql,
Collector<Row,?,R> collector,
Handler<AsyncResult<SqlResult<R>>> handler) |
PgPool |
preparedQuery(String sql,
Handler<AsyncResult<RowSet>> handler) |
<R> PgPool |
preparedQuery(String sql,
Tuple arguments,
Collector<Row,?,R> collector,
Handler<AsyncResult<SqlResult<R>>> handler) |
PgPool |
preparedQuery(String sql,
Tuple arguments,
Handler<AsyncResult<RowSet>> handler) |
<R> PgPool |
query(String sql,
Collector<Row,?,R> collector,
Handler<AsyncResult<SqlResult<R>>> handler) |
PgPool |
query(String sql,
Handler<AsyncResult<RowSet>> handler) |
begin, close, getConnectionstatic PgPool pool()
pool(PoolOptions) with a default poolOptions.static PgPool pool(PoolOptions poolOptions)
pool(PgConnectOptions, PoolOptions) with connectOptions build from the environment variables.static PgPool pool(String connectionUri)
pool(String, PoolOptions) with a default poolOptions.static PgPool pool(String connectionUri, PoolOptions poolOptions)
static PgPool pool(Vertx vertx, PoolOptions poolOptions)
pool(Vertx, PgConnectOptions, PoolOptions) with connectOptions build from the environment variables.static PgPool pool(Vertx vertx, String connectionUri, PoolOptions poolOptions)
static PgPool pool(PgConnectOptions connectOptions, PoolOptions poolOptions)
connectOptions and poolOptions.poolOptions - the options for creating the poolstatic PgPool pool(Vertx vertx, PgConnectOptions connectOptions, PoolOptions poolOptions)
pool(PgConnectOptions, PoolOptions) with a specific Vertx instance.PgPool preparedQuery(String sql, Handler<AsyncResult<RowSet>> handler)
preparedQuery in interface PoolpreparedQuery in interface SqlClient<R> PgPool preparedQuery(String sql, Collector<Row,?,R> collector, Handler<AsyncResult<SqlResult<R>>> handler)
preparedQuery in interface PoolpreparedQuery in interface SqlClientPgPool query(String sql, Handler<AsyncResult<RowSet>> handler)
<R> PgPool query(String sql, Collector<Row,?,R> collector, Handler<AsyncResult<SqlResult<R>>> handler)
PgPool preparedQuery(String sql, Tuple arguments, Handler<AsyncResult<RowSet>> handler)
preparedQuery in interface PoolpreparedQuery in interface SqlClient<R> PgPool preparedQuery(String sql, Tuple arguments, Collector<Row,?,R> collector, Handler<AsyncResult<SqlResult<R>>> handler)
preparedQuery in interface PoolpreparedQuery in interface SqlClientPgPool preparedBatch(String sql, List<Tuple> batch, Handler<AsyncResult<RowSet>> handler)
preparedBatch in interface PoolpreparedBatch in interface SqlClient<R> PgPool preparedBatch(String sql, List<Tuple> batch, Collector<Row,?,R> collector, Handler<AsyncResult<SqlResult<R>>> handler)
preparedBatch in interface PoolpreparedBatch in interface SqlClientCopyright © 2019 Eclipse. All rights reserved.