Packages

package postgres

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. Protected

Package Members

  1. package codec
  2. package connection
  3. package messages
  4. package values

Type Members

  1. case class OK(affectedRows: Int) extends QueryResponse with Product with Serializable
  2. case class Param[T](value: T)(implicit encoder: ValueEncoder[T]) extends Product with Serializable
  3. trait PostgresClient extends AnyRef
  4. class PostgresClientImpl extends PostgresClient
  5. trait PreparedStatement extends AnyRef
  6. sealed trait QueryResponse extends AnyRef
  7. case class ResultSet(rows: AsyncStream[Row]) extends QueryResponse with Product with Serializable
  8. trait Row extends AnyRef
  9. case class RowFormat(indexMap: Map[String, Int], formats: Array[Short], oids: Array[Int], dataTypes: Map[Int, TypeSpecifier], receives: PartialFunction[String, ValueDecoder[_]], charset: Charset) extends Product with Serializable
  10. case class RowImpl(values: Array[Option[ByteBuf]], rowFormat: RowFormat) extends Row with Product with Serializable
  11. trait RowReader[A] extends AnyRef

Value Members

  1. object OptionalField

    A reader that reads an optional, name-specified field from a row.

  2. object Param extends Serializable
  3. object PostgresClient
  4. object RequiredField
  5. object ResultSet extends Serializable
  6. object Row

Ungrouped