
com.outr.query.Update.scala Maven / Gradle / Ivy
package com.outr.query
/**
* @author Matt Hicks
*/
case class Update(values: List[ColumnValue[_]],
table: Table,
whereCondition: Condition = null) extends WhereSupport[Update] {
def where(condition: Condition) = copy(whereCondition = condition)
override def toString = s"Update(values = ${values.mkString(", ")}, table = ${table.tableName}, where = $whereCondition)"
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy