Packages

abstract class SlickDBQueryAlgebra[E, PK, TA <: (SlickQueryAlgebraDefinitions.this)#TableWithPK[E, PK]] extends DAOAlgebra[ConnectionIO, E, PK]

E

The type of value to be inserted into the table

PK

The type of the value by which to uniquely identify the element E, by default this is also the primary key, and also has the unique constraint.

TA

Slick Table definition

Linear Supertypes
DAOAlgebra[ConnectionIO, E, PK], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SlickDBQueryAlgebra
  2. DAOAlgebra
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new SlickDBQueryAlgebra()(implicit columnTypePK: (SlickQueryAlgebraDefinitions.this)#ColumnType[PK], identifiable: Identifiable[E, PK], connectionIOEC: ConnectionIOEC)

Abstract Value Members

  1. abstract def dao: slick.jdbc.JdbcProfile.API.TableQuery[TA]

    Because creating this object is done via a macro, we have to actually override in each implementer and call this with the explicit type for TA

    Because creating this object is done via a macro, we have to actually override in each implementer and call this with the explicit type for TA

    class MyStringTable extends TableWithPK[String, String] {...}
    class MyQueries extends QueryAlgebra[String, String, MyStringTable]{
      override val dao = TableQuery[MyStringTable]
    }

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  6. implicit val columnTypePK: (SlickQueryAlgebraDefinitions.this)#ColumnType[PK]
  7. implicit val connectionIOEC: ConnectionIOEC
  8. def delete(pk: PK): ConnectionIO[Unit]
    Definition Classes
    SlickDBQueryAlgebra → DAOAlgebra
  9. def deleteMany(pks: Iterable[PK]): ConnectionIO[Unit]
    Definition Classes
    SlickDBQueryAlgebra → DAOAlgebra
  10. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  11. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  12. def existAll(pks: Iterable[PK]): ConnectionIO[Boolean]
    Definition Classes
    SlickDBQueryAlgebra → DAOAlgebra
  13. def exists(pk: PK): ConnectionIO[Boolean]
    Definition Classes
    SlickDBQueryAlgebra → DAOAlgebra
  14. def existsAtLeastOne(pks: Iterable[PK]): ConnectionIO[Boolean]
    Definition Classes
    SlickDBQueryAlgebra → DAOAlgebra
  15. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  16. def find(pk: PK): ConnectionIO[Option[E]]
    Definition Classes
    SlickDBQueryAlgebra → DAOAlgebra
  17. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  18. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  19. implicit val identifiable: Identifiable[E, PK]
  20. def insert(e: E): ConnectionIO[PK]
    Definition Classes
    SlickDBQueryAlgebra → DAOAlgebra
  21. def insertMany(es: Iterable[E]): ConnectionIO[Unit]
    Definition Classes
    SlickDBQueryAlgebra → DAOAlgebra
  22. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  23. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  24. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  25. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  26. def retrieve(pk: PK): ConnectionIO[E]
    Definition Classes
    SlickDBQueryAlgebra → DAOAlgebra
  27. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  28. def toString(): String
    Definition Classes
    AnyRef → Any
  29. def update(e: E): ConnectionIO[E]
    Definition Classes
    SlickDBQueryAlgebra → DAOAlgebra
  30. def updateMany[M[_]](es: M[E])(implicit arg0: effects.Traverse[M]): ConnectionIO[Unit]
    Definition Classes
    SlickDBQueryAlgebra → DAOAlgebra
  31. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  32. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  33. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from DAOAlgebra[ConnectionIO, E, PK]

Inherited from AnyRef

Inherited from Any

Ungrouped