Packages

  • package root
    Definition Classes
    root
  • package doobie
    Definition Classes
    root
  • package enum

    Enumerated types for JDBC constants.

    Enumerated types for JDBC constants.

    Definition Classes
    doobie
  • package hi

    High-level database API.

    High-level database API. The constructors here are defined in terms of those in doobie.free.connection but differ in the following ways:

    • Enumerated values represented by Int values in JDBC are mapped to one of the proper types defined in doobie.enum.
    • Nullable values are represented in terms of Option.
    • Java collection types are translated to immutable Scala equivalents.
    • Actions that compute liftime-managed resources do not return the resource directly, but rather take a continuation in the resource's monad.
    • Actions that compute values of impure types (CLOB, InputStream, etc.) do not appear in this API. They are available in the low-level API but must be used with considerable caution.
    • Lifting actions, low-level type mapping actions, and resource management actions do not appear in this API.
    Definition Classes
    doobie
  • AlignSyntax
  • connection
  • preparedstatement
  • resultset
  • statement
  • package syntax

    Collection of modules that add syntax to existing types.

    Collection of modules that add syntax to existing types.

    Definition Classes
    doobie
  • package util

    Collection of modules for typeclasses and other helpful bits.

    Collection of modules for typeclasses and other helpful bits.

    Definition Classes
    doobie

package hi

High-level database API. The constructors here are defined in terms of those in doobie.free.connection but differ in the following ways:

  • Enumerated values represented by Int values in JDBC are mapped to one of the proper types defined in doobie.enum.
  • Nullable values are represented in terms of Option.
  • Java collection types are translated to immutable Scala equivalents.
  • Actions that compute liftime-managed resources do not return the resource directly, but rather take a continuation in the resource's monad.
  • Actions that compute values of impure types (CLOB, InputStream, etc.) do not appear in this API. They are available in the low-level API but must be used with considerable caution.
  • Lifting actions, low-level type mapping actions, and resource management actions do not appear in this API.
Source
package.scala
Linear Supertypes
AnyRef, Any
Ordering
  1. Grouped
  2. Alphabetic
  3. By Inheritance
Inherited
  1. hi
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. implicit class AlignSyntax [A] extends AnyRef
  2. type CallableStatementIO[A] = Free[CallableStatementOp, A]

  3. type ConnectionIO[A] = Free[ConnectionOp, A]

  4. type DatabaseMetaDataIO[A] = Free[DatabaseMetaDataOp, A]

  5. type DriverIO[A] = Free[DriverOp, A]

  6. type PreparedStatementIO[A] = Free[PreparedStatementOp, A]

  7. type ResultSetIO[A] = Free[ResultSetOp, A]

  8. type StatementIO[A] = Free[StatementOp, A]

Value Members

  1. object connection

    Module of high-level constructors for ConnectionIO actions.

  2. object preparedstatement

    Module of high-level constructors for PreparedStatementIO actions.

    Module of high-level constructors for PreparedStatementIO actions. Batching operations are not provided; see the statement module for this functionality.

  3. object resultset

    Module of high-level constructors for ResultSetIO actions.

  4. object statement

    Module of high-level constructors for StatementIO actions.

Inherited from AnyRef

Inherited from Any

Aliases

Modules

Ungrouped