Package

com.twitter.finagle.mysql

param

Permalink

package param

Visibility
  1. Public
  2. All

Type Members

  1. case class Charset(charset: Short) extends Product with Serializable

    Permalink

    A class eligible for configuring a mysql client's charset during the Handshake phase.

  2. case class ConnectionInitRequest(request: Option[Request]) extends Product with Serializable

    Permalink

    A class eligible for configuring a initial request which used when establishing a new session.

  3. case class Credentials(username: Option[String], password: Option[String]) extends Product with Serializable

    Permalink

    A class eligible for configuring a mysql client's credentials during the Handshake phase.

  4. case class Database(db: Option[String]) extends Product with Serializable

    Permalink

    A class eligible for configuring a mysql client's database during the Handshake phase.

  5. case class FoundRows(enabled: Boolean) extends Product with Serializable

    Permalink

    A class eligible for configuring a mysql client's CLIENT_FOUND_ROWS flag during the Handshake phase.

  6. case class MaxConcurrentPrepareStatements(num: Int) extends Product with Serializable

    Permalink

    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.

  7. case class UnsignedColumns(supported: Boolean) extends Product with Serializable

    Permalink

    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 -> IntValue LongValue -> LongLongValue LongLongValue -> BigIntValue

Ungrouped