in scala/dbc/datatype
class CharacterString

abstract class CharacterString()
extends String
with ScalaObject
Implementing classes or objects:
class CharacterLargeObject()
class CharacterVarying()
class Character()

A type category for all SQL types that store strings of characters.

Field Summary
  type NativeType
     The native Scala type in which values of this SQL type will be encoded.
  val nativeTypeId: Int
     The native Scala type in which values of this SQL type will be encoded.

Method Summary
  def encoding: Option[String]
     The name of the character set in which the string is encoded.

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

Methods inherited from scala/dbc/DataType-class
isEquivalent, isSubtypeOf, nullable, sqlString

Methods inherited from scala/dbc/datatype/String-class
maxLength

Field Detail

NativeType

  type NativeType = String
The native Scala type in which values of this SQL type will be encoded.

nativeTypeId

  val nativeTypeId: Int
The native Scala type in which values of this SQL type will be encoded. This must point to the same type as NativeType.
Method Detail

encoding

  def encoding: Option[String]
The name of the character set in which the string is encoded.