Open
Description
Is your feature request related to a problem? Please describe.
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
It is currently not possible to use the allowMultiQueries
option in MySqlConnectionConfiguration
.
Describe the solution you'd like
Please add an option to specify allowMultiQueries
in ConnectionFactoryOptions
or MySqlConnectionConfiguration
.
Additional context
Add any other context or screenshots about the feature request here.
Code Example:
val connectionFactory =
MySqlConnectionFactory.from(
MySqlConnectionConfiguration.builder()
.host(url)
.username(username)
.password(password)
.database(dbname)
.sslMode(SslMode.DISABLED)
.port(port)
.allowMultiQueries(false) // <-
.build(),
)