Packages

t

slick.jdbc

ResultSetMutator

trait ResultSetMutator[T] extends AnyRef

Source
Invoker.scala
Linear Supertypes
AnyRef, Any
Known Subclasses
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ResultSetMutator
  2. AnyRef
  3. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def +=(value: T): Unit

    Insert a new row.

  2. abstract def delete: Unit

    Delete the current row.

  3. abstract def end: Boolean

    Check if the end of the result set has been reached.

  4. abstract def row: T

    Get the current row's value.

    Get the current row's value. Throws a slick.SlickException when positioned after the end of the result set.

  5. abstract def row_=(value: T): Unit

    Update the current row.

Concrete Value Members

  1. def ++=(values: Seq[T]): Unit

    Insert multiple new rows.