Interface DataSourceReactiveMySQLConfig
public interface DataSourceReactiveMySQLConfig
-
Method Summary
Modifier and TypeMethodDescriptionOptional<io.vertx.mysqlclient.MySQLAuthenticationPlugin>
The authentication plugin the client should use.charset()
Charset for connections.Collation for connections.Connection timeout in secondsThe maximum number of inflight database commands that can be pipelined.Optional<io.vertx.mysqlclient.SslMode>
sslMode()
Desired security state of the connection to the server.Whether to return the number of rows matched by the WHERE clause in UPDATE statements, instead of the number of rows actually changed.
-
Method Details
-
charset
Charset for connections. -
collation
Collation for connections. -
sslMode
Desired security state of the connection to the server. -
connectionTimeout
OptionalInt connectionTimeout()Connection timeout in seconds -
authenticationPlugin
@ConfigDocDefault("default") Optional<io.vertx.mysqlclient.MySQLAuthenticationPlugin> authenticationPlugin()The authentication plugin the client should use. By default, it uses the plugin name specified by the server in the initial handshake packet. -
pipeliningLimit
OptionalInt pipeliningLimit()The maximum number of inflight database commands that can be pipelined. By default, pipelining is disabled. -
useAffectedRows
Whether to return the number of rows matched by the WHERE clause in UPDATE statements, instead of the number of rows actually changed.
-