Package

quasar

db

Permalink

package db

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. db
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. final case class ConnectionInfo(driverClassName: slamdata.Predef.String, url: slamdata.Predef.String, userName: slamdata.Predef.String, password: slamdata.Predef.String) extends Product with Serializable

    Permalink

    Connection parameters for JDBC.

  2. sealed trait DbConnectionConfig extends AnyRef

    Permalink
  3. sealed class NotFound extends AnyRef

    Permalink
  4. type NotFoundErrT[F[_], A] = EitherT[F, NotFound, A]

    Permalink
  5. final case class Schema[A](readVersion: ConnectionIO[slamdata.Predef.Option[A]], writeVersion: (A) ⇒ ConnectionIO[slamdata.Predef.Unit], updates: SortedMap[A, ConnectionIO[slamdata.Predef.Unit]])(implicit evidence$1: Atom[A], evidence$2: Order[A]) extends Product with Serializable

    Permalink

    updates

    a sequence of update operations which can be applied in sequence to bring the schema from any previous version up to the latest version, migrating existing data in the process.

  6. final case class StatefulTransactor(transactor: Transactor[Task], shutdown: Task[slamdata.Predef.Unit]) extends Product with Serializable

    Permalink

Value Members

  1. object DbConnectionConfig

    Permalink
  2. val DefaultConfig: (HikariConfig) ⇒ Task[slamdata.Predef.Unit]

    Permalink
  3. val NotFound: NotFound

    Permalink
  4. def connFail[A](message: slamdata.Predef.String): ConnectionIO[A]

    Permalink
  5. def poolingTransactor(cxn: ConnectionInfo, config: (HikariConfig) ⇒ Task[slamdata.Predef.Unit]): Task[StatefulTransactor]

    Permalink

Inherited from AnyRef

Inherited from Any

Ungrouped