Package | Description |
---|---|
io.vertx.sqlclient | |
io.vertx.sqlclient.spi |
Modifier and Type | Method and Description |
---|---|
SqlConnectOptions |
SqlConnectOptions.addProperty(String key,
String value)
Add a property for this client, which will be sent to server at the connection start.
|
SqlConnectOptions |
SqlConnectOptions.setCachePreparedStatements(boolean cachePreparedStatements)
Set whether prepared statements cache should be enabled.
|
SqlConnectOptions |
SqlConnectOptions.setDatabase(String database)
Specify the default database for the connection.
|
SqlConnectOptions |
SqlConnectOptions.setHost(String host)
Specify the host for connecting to the server.
|
SqlConnectOptions |
SqlConnectOptions.setPassword(String password)
Specify the user password to be used for the authentication.
|
SqlConnectOptions |
SqlConnectOptions.setPort(int port)
Specify the port for connecting to the server.
|
SqlConnectOptions |
SqlConnectOptions.setPreparedStatementCacheMaxSize(int preparedStatementCacheMaxSize)
Set the maximum number of prepared statements that the connection will cache.
|
SqlConnectOptions |
SqlConnectOptions.setPreparedStatementCacheSqlFilter(Predicate<String> predicate)
Set a predicate filtering prepared statements that the connection will cache.
|
SqlConnectOptions |
SqlConnectOptions.setPreparedStatementCacheSqlLimit(int preparedStatementCacheSqlLimit)
Set the maximum length of prepared statement SQL string that the connection will cache.
|
SqlConnectOptions |
SqlConnectOptions.setProperties(Map<String,String> properties)
Set properties for this client, which will be sent to server at the connection start.
|
SqlConnectOptions |
SqlConnectOptions.setTracingPolicy(io.vertx.core.tracing.TracingPolicy tracingPolicy)
Set the tracing policy for the client behavior when Vert.x has tracing enabled.
|
SqlConnectOptions |
SqlConnectOptions.setUser(String user)
Specify the user account to be used for the authentication.
|
Modifier and Type | Method and Description |
---|---|
static void |
SqlConnectOptionsConverter.fromJson(Iterable<Map.Entry<String,Object>> json,
SqlConnectOptions obj) |
static Pool |
Pool.pool(SqlConnectOptions connectOptions)
Like
Pool.pool(SqlConnectOptions, PoolOptions) with default options. |
static Pool |
Pool.pool(SqlConnectOptions database,
PoolOptions options)
Like
Pool.pool(Vertx, SqlConnectOptions, PoolOptions) with a Vert.x instance created automatically. |
static Pool |
Pool.pool(io.vertx.core.Vertx vertx,
SqlConnectOptions database,
PoolOptions options)
Create a connection pool to the
database with the given options . |
static void |
SqlConnectOptionsConverter.toJson(SqlConnectOptions obj,
io.vertx.core.json.JsonObject json) |
static void |
SqlConnectOptionsConverter.toJson(SqlConnectOptions obj,
Map<String,Object> json) |
Constructor and Description |
---|
SqlConnectOptions(SqlConnectOptions other) |
Modifier and Type | Method and Description |
---|---|
boolean |
Driver.acceptsOptions(SqlConnectOptions connectOptions) |
ConnectionFactory |
Driver.createConnectionFactory(io.vertx.core.Vertx vertx,
SqlConnectOptions database)
Create a connection factory to the given
database . |
Modifier and Type | Method and Description |
---|---|
Pool |
Driver.createPool(io.vertx.core.Vertx vertx,
List<? extends SqlConnectOptions> databases,
PoolOptions options)
Create a connection pool to the database configured with the given
connectOptions and poolOptions . |
Copyright © 2021 Eclipse. All rights reserved.