Packages

class Mutator extends ResultSetMutator[T]

Source
JdbcActionComponent.scala
Linear Supertypes
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Mutator
  2. ResultSetMutator
  3. AnyRef
  4. 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

Instance Constructors

  1. new Mutator(prit: PositionedResultIterator[T], bufferNext: Boolean, inv: JdbcProfile.QueryInvokerImpl[T])

Value Members

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

    Insert multiple new rows.

    Insert multiple new rows.

    Definition Classes
    ResultSetMutator
  2. def +=(value: T): Unit

    Insert a new row.

    Insert a new row.

    Definition Classes
    MutatorResultSetMutator
  3. val bufferNext: Boolean
  4. var current: T
  5. def delete: Unit

    Delete the current row.

    Delete the current row.

    Definition Classes
    MutatorResultSetMutator
  6. def emitStream(ctx: JdbcStreamingActionContext, limit: Long): Mutator.this.type
  7. def end: Boolean

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

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

    Definition Classes
    MutatorResultSetMutator
  8. val inv: JdbcProfile.QueryInvokerImpl[T]
  9. val pr: PositionedResult
  10. val prit: PositionedResultIterator[T]
  11. 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.

    Definition Classes
    MutatorResultSetMutator
  12. def row_=(value: T): Unit

    Update the current row.

    Update the current row.

    Definition Classes
    MutatorResultSetMutator
  13. val rs: ResultSet
  14. var state: Int

    The state of the stream.

    The state of the stream. 0 = in result set, 1 = before end marker, 2 = after end marker.

  15. def toString(): String
    Definition Classes
    Mutator → AnyRef → Any