derivedcolumn.scala

来自「JAVA 语言的函数式编程扩展」· SCALA 代码 · 共 39 行

SCALA
39
字号
/*                     __                                               *\**     ________ ___   / /  ___     Scala API                            ****    / __/ __// _ | / /  / _ |    (c) 2003-2007, LAMP/EPFL             ****  __\ \/ /__/ __ |/ /__/ __ |    http://scala-lang.org/               **** /____/\___/_/ |_/____/_/ | |                                         ****                          |/                                          **\*                                                                      */// $Id: DerivedColumn.scala 10890 2007-04-30 17:47:18Z michelou $package scala.dbc.statementabstract class DerivedColumn {    /** The value for the column. This value can be of any type but must be   *  calculated from fields that appear in a relation that takes part   *  in the query.   */  def valueExpression: Expression    /** A new name for this field. This name must be unique for the query in   *  which the column takes part.   */  def asClause: Option[String]    /** A SQL-99 compliant string representation of the derived column   *  sub-statement. This only has a meaning inside a select statement.   */  def sqlString: String =    valueExpression.sqlInnerString +    (asClause match {      case None => ""      case Some(ac) => " AS " + ac    })  }

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?