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
  • 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 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
  • package syntax

    Collection of modules that add syntax to existing types.

    Collection of modules that add syntax to existing types.

    Definition Classes
    doobie
  • AlignSyntax
  • AllSyntax
  • ConnectionIOOps
  • FoldableOps
  • MonadErrorOps
  • SqlInterpolator
  • StreamOps
  • ToAlignSyntax
  • ToConnectionIOOps
  • ToFoldableOps
  • ToMonadErrorOps
  • ToSqlInterpolator
  • ToStreamOps
  • align
  • all
  • connectionio
  • foldable
  • monaderror
  • stream
  • string
  • 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

syntax

package syntax

Collection of modules that add syntax to existing types.

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

Type Members

  1. final class AlignSyntax[A] extends AnyRef
  2. trait AllSyntax extends ToMonadErrorOps with ToFoldableOps with ToConnectionIOOps with ToStreamOps with ToSqlInterpolator with ToAlignSyntax
  3. class ConnectionIOOps[A] extends AnyRef
  4. class FoldableOps[F[_], A] extends AnyRef
  5. class MonadErrorOps[M[_], A] extends AnyRef
  6. final class SqlInterpolator extends AnyRef

    String interpolator for SQL literals.

    String interpolator for SQL literals. An expression of the form sql".. $a ... $b ..." with interpolated values of type A and B (which must have Param instances, derived automatically from Meta) yields a value of type Fragment.

  7. class StreamOps[F[_], A] extends AnyRef
  8. trait ToAlignSyntax extends AnyRef
  9. trait ToConnectionIOOps extends AnyRef
  10. trait ToFoldableOps extends AnyRef
  11. trait ToMonadErrorOps extends AnyRef
  12. trait ToSqlInterpolator extends AnyRef
  13. trait ToStreamOps extends AnyRef

Value Members

  1. object align extends ToAlignSyntax
  2. object all extends AllSyntax
  3. object connectionio extends ToConnectionIOOps
  4. object foldable extends ToFoldableOps
  5. object monaderror extends ToMonadErrorOps
  6. object stream extends ToStreamOps
  7. object string extends ToSqlInterpolator

Inherited from AnyRef

Inherited from Any

Ungrouped