package param
- Alphabetic
- Public
- Protected
Type Members
- final case class CachingSha2PasswordAuth(enabled: Boolean) extends Product with Serializable
To configure the client to use the caching_sha2_password authentication method.
To configure the client to use the caching_sha2_password authentication method. Needed to set the CLIENT_PLUGIN_AUTH capability flag during the handshake phase.
- case class Charset(charset: Short) extends Product with Serializable
A class eligible for configuring a mysql client's charset during the Handshake phase.
- case class ConnectionInitRequest(request: Option[Request]) extends Product with Serializable
A class eligible for configuring a initial request which used when establishing a new session.
- case class Credentials(username: Option[String], password: Option[String]) extends Product with Serializable
A class eligible for configuring a mysql client's credentials during the Handshake phase.
- case class Database(db: Option[String]) extends Product with Serializable
A class eligible for configuring a mysql client's database during the Handshake phase.
- case class FoundRows(enabled: Boolean) extends Product with Serializable
A class eligible for configuring a mysql client's CLIENT_FOUND_ROWS flag during the Handshake phase.
- case class Interactive(enabled: Boolean) extends Product with Serializable
A class eligible for configuring a mysql client's CLIENT_INTERACTIVE flag during the Handshake phase.
A class eligible for configuring a mysql client's CLIENT_INTERACTIVE flag during the Handshake phase. If the client is interactive, System_variables::net_interactive_timeout is used for the wait_timeout. If the client is not interactive, System_variables::net_wait_timeout is used.
- case class MaxConcurrentPrepareStatements(num: Int) extends Product with Serializable
A class eligible for configuring the maximum number of prepare statements.
A class eligible for configuring the maximum number of prepare statements. After creating
num
prepare statements, we'll start purging old ones. - final case class PathToServerRsaPublicKey(path: String) extends Product with Serializable
To configure the local path to the server's RSA public key.
To configure the local path to the server's RSA public key. This is used during caching_sha2_password authentication when authenticating over a plaintext connection.
- case class UnsignedColumns(supported: Boolean) extends Product with Serializable
Configure whether to support unsigned integer fields when returning elements of a Row.
Configure whether to support unsigned integer fields when returning elements of a Row. If not supported, unsigned fields will be decoded as if they were signed, potentially resulting in corruption in the case of overflowing the signed representation. Because Java doesn't support unsigned integer types widening may be necessary to support the unsigned variants. For example, an unsigned Int is represented as a Long.
Value
representations of unsigned columns which are widened when enabled:ByteValue
->ShortValue
ShortValue
-> IntValueLongValue
->LongLongValue
LongLongValue
->BigIntValue
Value Members
- object CachingSha2PasswordAuth extends Serializable
- object Charset extends Serializable
- object ConnectionInitRequest extends Serializable
- object Credentials extends Serializable
- object Database extends Serializable
- object FoundRows extends Serializable
- object Interactive extends Serializable
- object MaxConcurrentPrepareStatements extends Serializable
- object PathToServerRsaPublicKey extends Serializable
- object UnsignedColumns extends Serializable