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 util
    Definition Classes
    doobie
  • object query

    Module defining queries parameterized by input and output types.

    Module defining queries parameterized by input and output types.

    Definition Classes
    util
  • Query
  • Query0

object Query0

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

Constructors

  1. def apply[A](sql: String, pos: Option[Pos] = None)(implicit arg0: Read[A]): Query0[A]

    Construct a Query with the given SQL string, an optional Pos for diagnostic purposes, with no parameters.

    Construct a Query with the given SQL string, an optional Pos for diagnostic purposes, with no parameters. Note that the most common way to construct a Query is via the sqlinterpolator.

    Annotations
    @SuppressWarnings()

Typeclass Instances

  1. implicit val queryFunctor: Functor[Query0]