package postgres
Ordering
- Alphabetic
Visibility
- Public
- All
Type Members
- case class OK (affectedRows: Int) extends QueryResponse with Product with Serializable
- case class Param [T](value: T)(implicit encoder: ValueEncoder[T]) extends Product with Serializable
- trait PostgresClient extends AnyRef
- class PostgresClientImpl extends PostgresClient
- trait PreparedStatement extends AnyRef
- sealed trait QueryResponse extends AnyRef
- case class ResultSet (rows: List[Row]) extends QueryResponse with Product with Serializable
- trait Row extends AnyRef
- 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
- case class RowImpl (values: Array[Option[ChannelBuffer]], rowFormat: RowFormat) extends Row with Product with Serializable
- trait RowReader [A] extends AnyRef
Value Members
-
object
OptionalField
A reader that reads an optional, name-specified field from a row.
- object Param extends Serializable
- object PostgresClient
- object RequiredField
- object ResultSet extends Serializable
- object Row