Uses of Class
io.vertx.mysqlclient.MySQLConnectOptions
Packages that use MySQLConnectOptions
Package
Description
-
Uses of MySQLConnectOptions in io.vertx.mysqlclient
Methods in io.vertx.mysqlclient that return MySQLConnectOptionsModifier and TypeMethodDescriptionMySQLConnectOptions.addProperty(String key, String value) static MySQLConnectOptionsProvide aMySQLConnectOptionsconfigured from a connection URI.MySQLConnectOptions.merge(JsonObject other) MySQLConnectOptions.setAuthenticationPlugin(MySQLAuthenticationPlugin authenticationPlugin) Set the defaultauthentication plguinfor the client, the option will take effect at the connection start.MySQLConnectOptions.setCachePreparedStatements(boolean cachePreparedStatements) MySQLConnectOptions.setCharacterEncoding(String characterEncoding) Set the Java charset for encoding string values, this value is UTF-8 by default.MySQLConnectOptions.setCharset(String charset) Set the charset for the connection.MySQLConnectOptions.setCollation(String collation) Set the collation for the connection.MySQLConnectOptions.setDatabase(String database) MySQLConnectOptions.setPassword(String password) MySQLConnectOptions.setPipeliningLimit(int pipeliningLimit) Set the pipelining limit count.MySQLConnectOptions.setPort(int port) MySQLConnectOptions.setPreparedStatementCacheMaxSize(int preparedStatementCacheMaxSize) MySQLConnectOptions.setPreparedStatementCacheSqlFilter(Predicate<String> predicate) MySQLConnectOptions.setPreparedStatementCacheSqlLimit(int preparedStatementCacheSqlLimit) MySQLConnectOptions.setProperties(Map<String, String> properties) MySQLConnectOptions.setReconnectAttempts(int attempts) MySQLConnectOptions.setReconnectInterval(long interval) 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.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.setSslMode(SslMode sslMode) Set theSslModefor the client, this option can be used to specify the desired security state of the connection to the server.MySQLConnectOptions.setSslOptions(ClientSSLOptions sslOptions) MySQLConnectOptions.setTracingPolicy(TracingPolicy tracingPolicy) MySQLConnectOptions.setUseAffectedRows(boolean useAffectedRows) Sets how affected rows are calculated on update/delete/insert, if set totruean update that effectively does not change any data returns zero affected rows.static MySQLConnectOptionsMySQLConnectOptions.wrap(SqlConnectOptions options) Methods in io.vertx.mysqlclient with parameters of type MySQLConnectOptionsModifier and TypeMethodDescriptionstatic Future<MySQLConnection> MySQLConnection.connect(Vertx vertx, MySQLConnectOptions connectOptions) Create a connection to MySQL server with the givenconnectOptions.Constructors in io.vertx.mysqlclient with parameters of type MySQLConnectOptions -
Uses of MySQLConnectOptions in io.vertx.mysqlclient.spi
Subclasses with type arguments of type MySQLConnectOptions in io.vertx.mysqlclient.spiMethods in io.vertx.mysqlclient.spi that return MySQLConnectOptionsModifier and TypeMethodDescriptionMySQLDriver.downcast(SqlConnectOptions connectOptions) MySQLDriver.parseConnectionUri(String uri) Methods in io.vertx.mysqlclient.spi that return types with arguments of type MySQLConnectOptionsModifier and TypeMethodDescriptionMySQLDriver.createConnectionFactory(Vertx vertx, NetClientOptions transportOptions) Method parameters in io.vertx.mysqlclient.spi with type arguments of type MySQLConnectOptionsModifier and TypeMethodDescriptionprotected PoolMySQLDriver.newPool(io.vertx.core.internal.VertxInternal vertx, Handler<SqlConnection> connectHandler, Supplier<Future<MySQLConnectOptions>> databases, PoolOptions poolOptions, NetClientOptions transportOptions, io.vertx.core.internal.CloseFuture closeFuture) io.vertx.sqlclient.internal.SqlConnectionInternalMySQLDriver.wrapConnection(io.vertx.core.internal.ContextInternal context, ConnectionFactory<MySQLConnectOptions> factory, Connection connection) -
Uses of MySQLConnectOptions in io.vertx.reactivex.mysqlclient
Methods in io.vertx.reactivex.mysqlclient with parameters of type MySQLConnectOptionsModifier and TypeMethodDescriptionstatic Future<MySQLConnection> MySQLConnection.connect(Vertx vertx, MySQLConnectOptions connectOptions) Create a connection to MySQL server with the givenconnectOptions.static Single<MySQLConnection> MySQLConnection.rxConnect(Vertx vertx, MySQLConnectOptions connectOptions) Create a connection to MySQL server with the givenconnectOptions. -
Uses of MySQLConnectOptions in io.vertx.rxjava3.mysqlclient
Methods in io.vertx.rxjava3.mysqlclient with parameters of type MySQLConnectOptionsModifier and TypeMethodDescriptionstatic Single<MySQLConnection> MySQLConnection.connect(Vertx vertx, MySQLConnectOptions connectOptions) Create a connection to MySQL server with the givenconnectOptions.static Single<MySQLConnection> MySQLConnection.rxConnect(Vertx vertx, MySQLConnectOptions connectOptions) Create a connection to MySQL server with the givenconnectOptions.