status.scala
来自「JAVA 语言的函数式编程扩展」· SCALA 代码 · 共 33 行
SCALA
33 行
/* __ *\** ________ ___ / / ___ Scala API **** / __/ __// _ | / / / _ | (c) 2003-2007, LAMP/EPFL **** __\ \/ /__/ __ |/ /__/ __ | http://scala-lang.org/ **** /____/\___/_/ |_/____/_/ | | **** |/ **\* */// $Id:Status.scala 6853 2006-03-20 16:58:47 +0100 (Mon, 20 Mar 2006) dubochet $package scala.dbc.statementimport scala.dbc.Databaseimport scala.dbc.result/** A statement that changes the status of the database. */abstract class Status extends Statement { /** A SQL-99 compliant string representation of the statement. */ def sqlString: String /** Executes the statement on the given database. */ def execute(database: Database): result.Status[Unit] = { database.executeStatement(this) } def execute(database: Database, debug: Boolean): result.Status[Unit] = { database.executeStatement(this, debug) }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?