Class

org.scalarelational.instruction

Update

Related Doc: package instruction

Permalink

case class Update[+ResultType](table: Table, values: List[ColumnValue[_, _]], whereCondition: Option[Condition] = None, mapResult: (Int) ⇒ ResultType) extends WhereSupport[Update[ResultType]] with Instruction[ResultType] with Product with Serializable

Linear Supertypes
Serializable, Serializable, Product, Equals, Instruction[ResultType], WhereSupport[Update[ResultType]], SQLStatement, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Update
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. Instruction
  7. WhereSupport
  8. SQLStatement
  9. AnyRef
  10. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Update(table: Table, values: List[ColumnValue[_, _]], whereCondition: Option[Condition] = None, mapResult: (Int) ⇒ ResultType)

    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. def add(value: ColumnValue[_, _]): Update[ResultType]

    Permalink

    Returns a new copy of this Update with an additional column value.

    Returns a new copy of this Update with an additional column value. Will replace if the column is already represented.

  5. def and(condition: Condition): Update[ResultType]

    Permalink
    Definition Classes
    WhereSupport
  6. def apply()(implicit session: Session): ResultType

    Permalink

    Convenience wrapper that simply calls result

    Convenience wrapper that simply calls result

    Definition Classes
    Instruction
  7. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  8. final def async: Future[ResultType]

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  11. def finalize(): Unit

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

    Permalink
    Definition Classes
    AnyRef → Any
  13. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  14. val mapResult: (Int) ⇒ ResultType

    Permalink
  15. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  18. def or(condition: Condition): Update[ResultType]

    Permalink
    Definition Classes
    WhereSupport
  19. def result(implicit session: Session): ResultType

    Permalink
    Definition Classes
    UpdateInstruction
  20. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  21. val table: Table

    Permalink
    Definition Classes
    UpdateInstruction
  22. def toString(): String

    Permalink
    Definition Classes
    Update → AnyRef → Any
  23. val values: List[ColumnValue[_, _]]

    Permalink
  24. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  27. def where(condition: Condition): Update[ResultType]

    Permalink
    Definition Classes
    UpdateWhereSupport
  28. def where(condition: Condition, connectType: ConnectType): Update[ResultType]

    Permalink
    Definition Classes
    WhereSupport
  29. val whereCondition: Option[Condition]

    Permalink
    Definition Classes
    UpdateWhereSupport

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from Instruction[ResultType]

Inherited from WhereSupport[Update[ResultType]]

Inherited from SQLStatement

Inherited from AnyRef

Inherited from Any

Ungrouped