Packages

  • package root
    Definition Classes
    root
  • package doobie

    Top-level import, providing aliases for the most commonly used types and modules from doobie-free and doobie-core.

    Top-level import, providing aliases for the most commonly used types and modules from doobie-free and doobie-core. A typical starting set of imports would be something like this.

    import cats.implicits._
    import doobie._, doobie.implicits._
    Definition Classes
    root
    See also

    The doobie microsite for much more information.

  • package enum

    Enumerated types for JDBC constants.

    Enumerated types for JDBC constants. Enum values are provided by companion modules.

    Definition Classes
    doobie
  • AutoGeneratedKeys
  • ColumnNullable
  • FetchDirection
  • Holdability
  • JdbcType
  • Nullability
  • ParameterMode
  • ParameterNullable
  • ResultSetConcurrency
  • ResultSetType
  • SqlState
  • TransactionIsolation
  • package free
    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 lifetime-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
  • 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
p

doobie

enum

package enum

Enumerated types for JDBC constants. Enum values are provided by companion modules.

Source
package.scala
Linear Supertypes
AnyRef, Any
Ordering
  1. Grouped
  2. Alphabetic
  3. By Inheritance
Inherited
  1. enum
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. sealed abstract class AutoGeneratedKeys extends Product with Serializable

  2. sealed abstract class ColumnNullable extends Product with Serializable

  3. sealed abstract class FetchDirection extends Product with Serializable

  4. sealed abstract class Holdability extends Product with Serializable

  5. sealed abstract class JdbcType extends Product with Serializable

  6. sealed abstract class Nullability extends Product with Serializable

    Generic nullability that subsumes JDBC's distinct parameter and column nullability.

  7. sealed abstract class ParameterMode extends Product with Serializable

  8. sealed abstract class ParameterNullable extends Product with Serializable

  9. sealed abstract class ResultSetConcurrency extends Product with Serializable

  10. sealed abstract class ResultSetType extends Product with Serializable

  11. final case class SqlState(value: String) extends AnyVal with Product with Serializable

    A simple newtype wrapper around JDBC SqlState values, which are always vendor-specific.

    A simple newtype wrapper around JDBC SqlState values, which are always vendor-specific. Vendor modules like doobie-postgres can provide modules of defined values.

  12. sealed abstract class TransactionIsolation extends Product with Serializable

Value Members

  1. object AutoGeneratedKeys extends Serializable

  2. object ColumnNullable extends Serializable

  3. object FetchDirection extends Serializable

  4. object Holdability extends Serializable

  5. object JdbcType extends Serializable

  6. object Nullability extends Serializable

  7. object ParameterMode extends Serializable

  8. object ParameterNullable extends Serializable

  9. object ResultSetConcurrency extends Serializable

  10. object ResultSetType extends Serializable

  11. object TransactionIsolation extends Serializable

Inherited from AnyRef

Inherited from Any

Modules

Types