MySQLConnectOptions |
MySQLConnectOptions.addProperty(String key,
String value) |
|
static MySQLConnectOptions |
MySQLConnectOptions.fromUri(String connectionUri) |
|
MySQLConnectOptions |
MySQLConnectOptions.merge(JsonObject other) |
|
MySQLConnectOptions |
MySQLConnectOptions.setAuthenticationPlugin(MySQLAuthenticationPlugin authenticationPlugin) |
Set the default authentication plguin for the client, the option will take effect at the connection start.
|
MySQLConnectOptions |
MySQLConnectOptions.setCachePreparedStatements(boolean cachePreparedStatements) |
|
MySQLConnectOptions |
MySQLConnectOptions.setCharacterEncoding(String characterEncoding) |
Set the Java charset for encoding string values, this value is UTF-8 by default.
|
MySQLConnectOptions |
MySQLConnectOptions.setCharset(String charset) |
Set the charset for the connection.
|
MySQLConnectOptions |
MySQLConnectOptions.setCollation(String collation) |
Set the collation for the connection.
|
MySQLConnectOptions |
MySQLConnectOptions.setDatabase(String database) |
|
MySQLConnectOptions |
MySQLConnectOptions.setHost(String host) |
|
MySQLConnectOptions |
MySQLConnectOptions.setPassword(String password) |
|
MySQLConnectOptions |
MySQLConnectOptions.setPipeliningLimit(int pipeliningLimit) |
Set the pipelining limit count.
|
MySQLConnectOptions |
MySQLConnectOptions.setPort(int port) |
|
MySQLConnectOptions |
MySQLConnectOptions.setPreparedStatementCacheMaxSize(int preparedStatementCacheMaxSize) |
|
MySQLConnectOptions |
MySQLConnectOptions.setPreparedStatementCacheSqlFilter(Predicate<String> predicate) |
|
MySQLConnectOptions |
MySQLConnectOptions.setPreparedStatementCacheSqlLimit(int preparedStatementCacheSqlLimit) |
|
MySQLConnectOptions |
MySQLConnectOptions.setProperties(Map<String,String> properties) |
|
MySQLConnectOptions |
MySQLConnectOptions.setReconnectAttempts(int attempts) |
|
MySQLConnectOptions |
MySQLConnectOptions.setReconnectInterval(long interval) |
|
MySQLConnectOptions |
MySQLConnectOptions.setServerRsaPublicKeyPath(String serverRsaPublicKeyPath) |
Set the path of server RSA public key which is mostly used for encrypting password under insecure connections when performing authentication.
|
MySQLConnectOptions |
MySQLConnectOptions.setServerRsaPublicKeyValue(Buffer serverRsaPublicKeyValue) |
Set the value of server RSA public key which is mostly used for encrypting password under insecure connections when performing authentication.
|
MySQLConnectOptions |
MySQLConnectOptions.setSslMode(SslMode sslMode) |
Set the SslMode for the client, this option can be used to specify the desired security state of the connection to the server.
|
MySQLConnectOptions |
MySQLConnectOptions.setSslOptions(ClientSSLOptions sslOptions) |
|
MySQLConnectOptions |
MySQLConnectOptions.setTracingPolicy(TracingPolicy tracingPolicy) |
|
MySQLConnectOptions |
MySQLConnectOptions.setUseAffectedRows(boolean useAffectedRows) |
Sets how affected rows are calculated on update/delete/insert, if set to true an update that effectively
does not change any data returns zero affected rows.
|
MySQLConnectOptions |
MySQLConnectOptions.setUser(String user) |
|
static MySQLConnectOptions |
MySQLConnectOptions.wrap(SqlConnectOptions options) |
|