scalasql.query.Update
See theUpdate companion object
trait Update[Q, R] extends JoinOps[Update, Q, R], Base[Q], ExecuteUpdate[Int]
A SQL UPDATE
query
Attributes
- Companion
- object
- Graph
-
- Supertypes
-
trait ExecuteUpdate[Int]trait Query[Int]trait Base[Q]trait Renderabletrait WithSqlExpr[Q]class Objecttrait Matchableclass AnyShow all
- Known subtypes
-
Members list
Value members
Abstract methods
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]
Concrete methods
Inherited methods
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
Attributes
- Inherited from:
- JoinOps
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]
Attributes
- Definition Classes
- Inherited from:
- ExecuteUpdate
Attributes
- Definition Classes
- Inherited from:
- ExecuteUpdate
Attributes
- Inherited from:
- ExecuteUpdate
Attributes
- Inherited from:
- ExecuteUpdate
In this article