package param
- Alphabetic
- Public
- All
Type Members
-
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
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
numprepare statements, we'll start purging old ones. -
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.
Valuerepresentations of unsigned columns which are widened when enabled:ByteValue->ShortValueShortValue-> IntValueLongValue->LongLongValueLongLongValue->BigIntValue
Value Members
- object Charset extends Serializable
- object ConnectionInitRequest extends Serializable
- object Credentials extends Serializable
- object Database extends Serializable
- object FoundRows extends Serializable
- object MaxConcurrentPrepareStatements extends Serializable
- object UnsignedColumns extends Serializable