trait Update[Q, R] extends JoinOps[Update, Q, R] with Base[Q] with ExecuteUpdate[Int]

A SQL UPDATE query

Linear Supertypes
ExecuteUpdate[Int], Query[Int], Base[Q], Renderable, JoinOps[Update, Q, R], WithSqlExpr[Q], AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Update
  2. ExecuteUpdate
  3. Query
  4. Base
  5. Renderable
  6. JoinOps
  7. WithSqlExpr
  8. AnyRef
  9. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def expr: Q
    Attributes
    protected
    Definition Classes
    WithSqlExpr
  2. abstract def filter(f: (Q) => Expr[Boolean]): Update[Q, R]
  3. abstract def join0[Q2, R2, QF, RF](prefix: String, other: Joinable[Q2, R2], on: Option[(Q, Q2) => Expr[Boolean]])(implicit ja: JoinAppend[Q, Q2, QF, RF]): Update[QF, RF]
    Definition Classes
    UpdateJoinOps
  4. abstract def qr: Row[Q, R]
  5. abstract def queryConstruct(args: ResultSetIterator): Int
    Attributes
    protected
    Definition Classes
    Query
  6. abstract def renderSql(ctx: Context): SqlStr
    Attributes
    protected
    Definition Classes
    Renderable
  7. abstract def set(f: (Q) => Assignment[_]*): Update[Q, R]
  8. abstract def table: TableRef
    Definition Classes
    Base

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[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  6. def crossJoin[Q2, R2, QF, RF](other: Joinable[Q2, R2])(implicit ja: JoinAppend[Q, Q2, QF, RF]): Update[QF, RF]

    Performs a CROSS JOIN, which is an INNER JOIN but without the ON clause

    Performs a CROSS JOIN, which is an INNER JOIN but without the ON clause

    Definition Classes
    JoinOps
  7. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  8. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  9. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  10. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  12. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  13. def join[Q2, R2, QF, RF](other: Joinable[Q2, R2])(on: (Q, Q2) => Expr[Boolean])(implicit ja: JoinAppend[Q, Q2, QF, RF]): Update[QF, RF]

    Performs a JOIN/INNER JOIN on the given other, typically a Table or Select.

    Performs a JOIN/INNER JOIN on the given other, typically a Table or Select.

    Definition Classes
    JoinOps
  14. def joinInfo[Q2, R2](joinPrefix: String, other: Joinable[Q2, R2], on: Option[(Q, Q2) => Expr[Boolean]]): (Seq[Join], Q2)
    Attributes
    protected
    Definition Classes
    JoinOps
  15. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  16. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  17. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  18. def queryIsExecuteUpdate: Boolean
    Attributes
    protected
    Definition Classes
    ExecuteUpdateQuery
  19. def queryIsSingleRow: Boolean
    Attributes
    protected
    Definition Classes
    ExecuteUpdateQuery
  20. def queryWalkExprs(): Nil
    Attributes
    protected
    Definition Classes
    ExecuteUpdateQuery
  21. def queryWalkLabels(): Nil
    Attributes
    protected
    Definition Classes
    ExecuteUpdateQuery
  22. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  23. def toString(): String
    Definition Classes
    AnyRef → Any
  24. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  25. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  26. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  27. def withFilter(f: (Q) => Expr[Boolean]): Update[Q, R]

Inherited from ExecuteUpdate[Int]

Inherited from Query[Int]

Inherited from Base[Q]

Inherited from Renderable

Inherited from JoinOps[Update, Q, R]

Inherited from WithSqlExpr[Q]

Inherited from AnyRef

Inherited from Any

Ungrouped