in scala/dbc
class Value

abstract class Value()
extends Object
with ScalaObject
Implementing classes or objects:
class ApproximateNumeric[Type]() in scala/dbc/value
class Unknown() in scala/dbc/value
class CharacterLargeObject() in scala/dbc/value
class CharacterVarying() in scala/dbc/value
class Character() in scala/dbc/value
class ExactNumeric[Type]() in scala/dbc/value
class Boolean() in scala/dbc/value

A SQL-99 value of any type.

Field Summary
  type NativeType
abstract val dataType: DataType
     The SQL-99 type of the value.
abstract val nativeValue: dataType.NativeType

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

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

Field Detail

dataType

  abstract val dataType: DataType
The SQL-99 type of the value.

NativeType

  type NativeType = dataType.NativeType

nativeValue

  abstract val nativeValue: dataType.NativeType
Method Detail

sqlString

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