Example usage for Java io.vertx.mysqlclient MySQLPool fields, constructors, methods, implement or subclass
The text is from its open source code.
void | close() Close the pool and release the associated resources. |
void | getConnection(Handler Get a connection from the pool. |
MySQLPool | pool(String connectionUri, PoolOptions poolOptions) Like #pool(MySQLConnectOptions,PoolOptions) with connectOptions build from connectionUri . |
MySQLPool | pool(Vertx vertx, String connectionUri) Like #pool(Vertx,String,PoolOptions) with a default poolOptions .. |
MySQLPool | pool(MySQLConnectOptions connectOptions, PoolOptions poolOptions) Create a connection pool to the MySQL server configured with the given connectOptions and poolOptions . |
MySQLPool | pool(Vertx vertx, String connectionUri, PoolOptions poolOptions) Like #pool(Vertx,MySQLConnectOptions,PoolOptions) with connectOptions build from connectionUri . |
MySQLPool | pool(Vertx vertx, MySQLConnectOptions connectOptions, PoolOptions poolOptions) Like #pool(MySQLConnectOptions,PoolOptions) with a specific Vertx instance. |
MySQLPool | pool(String connectionUri) Like #pool(String,PoolOptions) with a default poolOptions . |
MySQLPool | query(String sql, Handler |