in scala/dbc/statement
class Update

case class Update(updateTarget: String, setClauses: List[SetClause], whereClause: Option[Expression])
extends Status
with ScalaObject
with CaseClass

An update of the state of a table.

Field Summary
  val setClauses: List[SetClause]
  val updateTarget: String
  val whereClause: Option[Expression]

Method Summary
  def sqlString: String
     A SQL-99 compliant string representation of the select statement.

Methods inherited from java/lang/Object-class
clone, eq, equals, finalize, getClass, hashCode, ne, notify, notifyAll, synchronized, toString, wait, wait, wait

Methods inherited from scala/Any-class
!=, ==, asInstanceOf, isInstanceOf, match

Methods inherited from scala/CaseClass-class
caseArity, caseElement, caseName

Methods inherited from scala/ScalaObject-class
getScalaType

Methods inherited from scala/dbc/statement/Status-class
execute, execute

Field Detail

updateTarget

  val updateTarget: String

setClauses

  val setClauses: List[SetClause]

whereClause

  val whereClause: Option[Expression]
Method Detail

sqlString

  def sqlString: String
A SQL-99 compliant string representation of the select statement.