in scala/dbc/statement
class Status

abstract class Status()
extends Statement
with ScalaObject
Implementing classes or objects:
class Update(updateTarget: String, setClauses: List[SetClause], whereClause: Option[Expression])
class Insert(insertionTarget: String, insertionData: InsertionData)

A statement that changes the status of the database.

Method Summary
  def execute(database: Database): Status[Unit]
     Executes the statement on the given database.
  def execute(database: Database, debug: Boolean): Status[Unit]
abstract def sqlString: String
     A SQL-99 compliant string representation of the 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/ScalaObject-class
getScalaType

Method Detail

sqlString

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

execute

  def execute(database: Database): Status[Unit]
Executes the statement on the given database.

execute

  def execute(database: Database, debug: Boolean): Status[Unit]