Package

io

getquill

Permalink

package getquill

Visibility
  1. Public
  2. All

Type Members

  1. sealed trait Action[E] extends QAC[E, Any]

    Permalink
  2. sealed trait ActionReturning[E, +Output] extends QAC[E, Output] with Action[E]

    Permalink
  3. class AstPrinter extends Walker

    Permalink
  4. sealed trait BatchAction[+A <: QAC[_, _] with Action[_]] extends AnyRef

    Permalink
  5. trait CamelCase extends NamingStrategy

    Permalink
  6. trait CompositeNamingStrategy extends NamingStrategy

    Permalink
  7. case class CompositeNamingStrategy2[N1 <: NamingStrategy, N2 <: NamingStrategy](n1: N1, n2: N2) extends CompositeNamingStrategy with Product with Serializable

    Permalink
  8. case class CompositeNamingStrategy3[N1 <: NamingStrategy, N2 <: NamingStrategy, N3 <: NamingStrategy](n1: N1, n2: N2, n3: N3) extends CompositeNamingStrategy with Product with Serializable

    Permalink
  9. case class CompositeNamingStrategy4[N1 <: NamingStrategy, N2 <: NamingStrategy, N3 <: NamingStrategy, N4 <: NamingStrategy](n1: N1, n2: N2, n3: N3, n4: N4) extends CompositeNamingStrategy with Product with Serializable

    Permalink
  10. sealed trait Delete[E] extends QAC[E, Nothing] with Action[E]

    Permalink
  11. trait Embedded extends AnyRef

    Permalink
  12. trait EntityQueryModel[T] extends Query[T]

    Permalink
  13. trait Escape extends NamingStrategy

    Permalink
  14. trait H2Dialect extends SqlIdiom with PositionalBindVariables with ConcatSupport with CanReturnField

    Permalink
  15. sealed trait Insert[E] extends QAC[E, Nothing] with Action[E]

    Permalink
  16. sealed trait JoinQuery[A, B, R] extends Query[R]

    Permalink
  17. trait Literal extends NamingStrategy

    Permalink
  18. trait LowerCase extends NamingStrategy

    Permalink
  19. case class MappedEncoding[I, O](f: (I) ⇒ O) extends Product with Serializable

    Permalink
  20. class MirrorIdiom extends MirrorIdiomBase with CanReturnClause

    Permalink
  21. trait MirrorIdiomBase extends Idiom

    Permalink
  22. trait MirrorSqlDialect extends SqlIdiom with QuestionMarkBindVariables with ConcatSupport with CanReturnField

    Permalink
  23. trait MirrorSqlDialectWithBooleanLiterals extends SqlIdiom with QuestionMarkBindVariables with ConcatSupport with CanReturnField with BooleanLiteralSupport

    Permalink
  24. trait MirrorSqlDialectWithNoReturn extends SqlIdiom with QuestionMarkBindVariables with ConcatSupport with CannotReturn

    Permalink
  25. trait MirrorSqlDialectWithOutputClause extends SqlIdiom with QuestionMarkBindVariables with ConcatSupport with CanOutputClause

    Permalink
  26. trait MirrorSqlDialectWithReturnClause extends SqlIdiom with QuestionMarkBindVariables with ConcatSupport with CanReturnClause

    Permalink
  27. trait MirrorSqlDialectWithReturnMulti extends SqlIdiom with QuestionMarkBindVariables with ConcatSupport with CanReturnMultiField

    Permalink
  28. trait MySQLDialect extends SqlIdiom with QuestionMarkBindVariables with NoConcatSupport with CanReturnField

    Permalink
  29. trait MysqlEscape extends NamingStrategy

    Permalink
  30. trait NamingStrategy extends AnyRef

    Permalink
  31. trait OracleDialect extends SqlIdiom with QuestionMarkBindVariables with ConcatSupport with CanReturnMultiField with BooleanLiteralSupport

    Permalink
  32. case class Ord[T](ord: Ordering) extends Product with Serializable

    Permalink
  33. trait PluralizedTableNames extends NamingStrategy

    Permalink
  34. trait PostgresDialect extends SqlIdiom with QuestionMarkBindVariables with ConcatSupport with OnConflictSupport with CanReturnClause

    Permalink
  35. trait PostgresEscape extends Escape

    Permalink
  36. trait PseudoAst extends AnyRef

    Permalink

    A trait to be used by elements that are not proper AST elements but should still be treated as though they were in the case where traceAstSimple is enabled (i.e.

    A trait to be used by elements that are not proper AST elements but should still be treated as though they were in the case where traceAstSimple is enabled (i.e. their toString method should be used instead of the standard qprint AST printing)

  37. sealed trait QAC[ModificationEntity, +OutputEntity] extends AnyRef

    Permalink

    A Quill-Action-Concept centrally defines Quill Query, Insert, Update, Delete, etc...

    A Quill-Action-Concept centrally defines Quill Query, Insert, Update, Delete, etc... actions. This ZIO-inspired construct makes it easier to reason about Quoted actions (particularly in Dotty) in a type-full way.

  38. sealed trait Query[+T] extends QAC[Nothing, T]

    Permalink
  39. trait QueryProbing extends AnyRef

    Permalink
  40. sealed trait ReturnAction extends AnyRef

    Permalink
  41. trait SQLServerDialect extends SqlIdiom with QuestionMarkBindVariables with ConcatSupport with CanOutputClause with BooleanLiteralSupport

    Permalink
  42. trait SnakeCase extends NamingStrategy

    Permalink
  43. trait SqliteDialect extends SqlIdiom with QuestionMarkBindVariables with NoConcatSupport with OnConflictSupport with CanReturnField

    Permalink
  44. sealed trait Update[E] extends QAC[E, Nothing] with Action[E]

    Permalink
  45. trait UpperCase extends NamingStrategy

    Permalink

Ungrouped