/* __ *\ ** ________ ___ / / ___ Scala API ** ** / __/ __// _ | / / / _ | (c) 2003-2006, LAMP/EPFL ** ** __\ \/ /__/ __ |/ /__/ __ | ** ** /____/\___/_/ |_/____/_/ | | ** ** |/ ** \* */ // $Id:Value.scala 6853 2006-03-20 16:58:47 +0100 (Mon, 20 Mar 2006) dubochet $ package scala.dbc2; /** A SQL-99 value of any type. */ abstract class Value { /** The SQL-99 type of the value. */ val dataType: DataType; type NativeType <: Any val nativeValue: NativeType; /** A SQL-99 compliant string representation of the value. */ def sqlString: String; }