Trait

scalikejdbc

QueryDSLFeature

Related Doc: package scalikejdbc

Permalink

trait QueryDSLFeature extends AnyRef

Query DSL

Self Type
QueryDSLFeature with SQLInterpolationFeature with SQLSyntaxSupportFeature
Source
QueryDSLFeature.scala
Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. QueryDSLFeature
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. trait ConditionSQLBuilder[A] extends (QueryDSLFeature.this)#SQLBuilder[A] with (QueryDSLFeature.this)#PagingSQLBuilder[A] with (QueryDSLFeature.this)#GroupBySQLBuilder[A]

    Permalink
  2. case class DeleteSQLBuilder(sql: (QueryDSLFeature.this)#SQLSyntax) extends (QueryDSLFeature.this)#SQLBuilder[(QueryDSLFeature.this)#UpdateOperation] with (QueryDSLFeature.this)#WhereSQLBuilder[(QueryDSLFeature.this)#UpdateOperation] with Product with Serializable

    Permalink

    SQLBuilder for delete queries.

  3. trait ExceptQuerySQLBuilder[A] extends (QueryDSLFeature.this)#SQLBuilder[A]

    Permalink

    Except query builder

  4. trait ForUpdateQuerySQLBuilder[A] extends (QueryDSLFeature.this)#SQLBuilder[A]

    Permalink

    for update query builder

  5. trait GroupBySQLBuilder[A] extends (QueryDSLFeature.this)#SQLBuilder[A] with (QueryDSLFeature.this)#PagingSQLBuilder[A]

    Permalink
  6. case class InsertSQLBuilder(sql: (QueryDSLFeature.this)#SQLSyntax) extends (QueryDSLFeature.this)#SQLBuilder[(QueryDSLFeature.this)#UpdateOperation] with Product with Serializable

    Permalink

    SQLBuilder for insert queries.

  7. trait IntersectQuerySQLBuilder[A] extends (QueryDSLFeature.this)#SQLBuilder[A]

    Permalink

    Intersect query builder

  8. trait PagingSQLBuilder[A] extends (QueryDSLFeature.this)#SQLBuilder[A] with (QueryDSLFeature.this)#UnionQuerySQLBuilder[A] with (QueryDSLFeature.this)#ExceptQuerySQLBuilder[A] with (QueryDSLFeature.this)#IntersectQuerySQLBuilder[A] with (QueryDSLFeature.this)#ForUpdateQuerySQLBuilder[A] with (QueryDSLFeature.this)#SubQuerySQLBuilder[A]

    Permalink
  9. trait SQLBuilder[A] extends AnyRef

    Permalink

    SQLBuilder

  10. case class SelectSQLBuilder[A](sql: (QueryDSLFeature.this)#SQLSyntax, lazyColumns: Boolean = false, resultAllProviders: List[(QueryDSLFeature.this)#ResultAllProvider] = Nil, ignoreOnClause: Boolean = false) extends (QueryDSLFeature.this)#SQLBuilder[A] with (QueryDSLFeature.this)#SubQuerySQLBuilder[A] with Product with Serializable

    Permalink

    SQLBuilder for select queries.

  11. trait SubQuerySQLBuilder[A] extends (QueryDSLFeature.this)#SQLBuilder[A]

    Permalink

    Sub query builder

  12. trait UnionQuerySQLBuilder[A] extends (QueryDSLFeature.this)#SQLBuilder[A]

    Permalink

    Union query builder

  13. trait UpdateOperation extends AnyRef

    Permalink

    Represents UpdateOperation (used as SQLBuilder[UpdateOperation]).

  14. case class UpdateSQLBuilder(sql: (QueryDSLFeature.this)#SQLSyntax) extends (QueryDSLFeature.this)#SQLBuilder[(QueryDSLFeature.this)#UpdateOperation] with (QueryDSLFeature.this)#WhereSQLBuilder[(QueryDSLFeature.this)#UpdateOperation] with Product with Serializable

    Permalink

    SQLBuilder for update queries.

  15. trait WhereSQLBuilder[A] extends (QueryDSLFeature.this)#SQLBuilder[A]

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. object QueryDSL

    Permalink

    Prefix object for name confiliction.

    Prefix object for name confiliction.

    withSQL { QueryDSL.select.from(User as u).where.eq(u.id, 123) }
  5. object applyExecute

    Permalink

    withSQL and execute.apply()

  6. object applyUpdate

    Permalink

    withSQL and update.apply()

  7. object applyUpdateAndReturnGeneratedKey

    Permalink

    withSQL and updateAndReturnGeneratedKey.apply()

  8. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  9. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. val delete: QueryDSL.delete.type

    Permalink
  11. val deleteFrom: QueryDSL.deleteFrom.type

    Permalink
  12. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  13. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  14. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  15. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  16. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  17. val insert: QueryDSL.insert.type

    Permalink
  18. val insertInto: QueryDSL.insertInto.type

    Permalink
  19. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  20. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  21. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  22. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  23. val select: QueryDSL.select.type

    Permalink
  24. val selectFrom: QueryDSL.selectFrom.type

    Permalink
  25. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  26. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  27. val update: QueryDSL.update.type

    Permalink
  28. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  29. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  30. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  31. object withSQL

    Permalink

    withSQL clause which returns SQL[A, NoExtractor] from SQLBuilder.

Inherited from AnyRef

Inherited from Any

Ungrouped