package postgres

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. All

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: List[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[ChannelBuffer]], 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