Packages

class Impl[Q, R] extends Update[Q, R]

Syntax reference

https://www.postgresql.org/docs/current/sql-update.html

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

Instance Constructors

  1. new Impl(expr: Q, table: TableRef, set0: Seq[Assignment[_]], joins: Seq[Join], where: Seq[Expr[_]])(implicit qr: Row[Q, R], dialect: DialectTypeMappers)

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 copy[Q, R](expr: Q = this.expr, table: TableRef = this.table, set0: Seq[Assignment[_]] = this.set0, joins: Seq[Join] = this.joins, where: Seq[Expr[_]] = this.where)(implicit qr: Row[Q, R], dialect: DialectTypeMappers): Update[Q, R]
    Attributes
    protected
  7. 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
  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  10. val expr: Q
    Definition Classes
    Impl → WithSqlExpr
  11. def filter(f: (Q) => Expr[Boolean]): Update[Q, R]
    Definition Classes
    ImplUpdate
  12. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  13. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  14. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  15. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  16. 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
  17. 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
    ImplUpdateJoinOps
  18. def joinInfo[Q2, R2](joinPrefix: String, other: Joinable[Q2, R2], on: Option[(Q, Q2) => Expr[Boolean]]): (Seq[Join], Q2)
    Attributes
    protected
    Definition Classes
    JoinOps
  19. val joins: Seq[Join]
  20. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  21. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  22. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  23. implicit val qr: Row[Q, R]
    Definition Classes
    ImplUpdate
  24. def queryConstruct(args: ResultSetIterator): Int
    Attributes
    protected
    Definition Classes
    ImplQuery
  25. def queryIsExecuteUpdate: Boolean
    Attributes
    protected
    Definition Classes
    ExecuteUpdateQuery
  26. def queryIsSingleRow: Boolean
    Attributes
    protected
    Definition Classes
    ExecuteUpdateQuery
  27. def queryWalkExprs(): Nil
    Attributes
    protected
    Definition Classes
    ExecuteUpdateQuery
  28. def queryWalkLabels(): Nil
    Attributes
    protected
    Definition Classes
    ExecuteUpdateQuery
  29. def renderSql(ctx: Context): SqlStr
    Attributes
    protected
    Definition Classes
    Impl → Renderable
  30. def set(f: (Q) => Assignment[_]*): Update[Q, R]
    Definition Classes
    ImplUpdate
  31. val set0: Seq[Assignment[_]]
  32. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  33. val table: TableRef
    Definition Classes
    ImplBase
  34. def toString(): String
    Definition Classes
    AnyRef → Any
  35. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  36. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  37. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  38. val where: Seq[Expr[_]]
  39. def withFilter(f: (Q) => Expr[Boolean]): Update[Q, R]
    Definition Classes
    Update

Inherited from 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