Package | Description |
---|---|
io.vertx.mysqlclient | |
io.vertx.pgclient | |
io.vertx.sqlclient |
Modifier and Type | Class and Description |
---|---|
class |
MySQLConnectOptions
Connect options for configuring
MySQLConnection or MySQLPool . |
Modifier and Type | Class and Description |
---|---|
class |
PgConnectOptions |
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.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.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 void |
SqlConnectOptionsConverter.toJson(SqlConnectOptions obj,
JsonObject json) |
static void |
SqlConnectOptionsConverter.toJson(SqlConnectOptions obj,
Map<String,Object> json) |
Constructor and Description |
---|
SqlConnectOptions(SqlConnectOptions other) |
Copyright © 2020 Eclipse. All rights reserved.