
org.scalaquery.ResultSetMutator.scala Maven / Gradle / Ivy
package org.scalaquery
trait ResultSetMutator[T] {
/**
* Get the current row's value.
*/
def row: T
/**
* Update the current row.
*/
def row_=(value: T)
/**
* Insert a new row.
*/
def insert(value: T)
/**
* Delete the current row.
*/
def delete(): Unit
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy