in scala/dbc/result
class FieldMetadata

abstract class FieldMetadata()
extends Object
with ScalaObject

Informations attached to a field about its content and its relationship to the originating database.

Method Summary
abstract def catalog: String
     The name of the catalog in the database from which the field originates
abstract def datatype: DataType
     The expected type of the field.
abstract def index: Int
     The index of the field in the tuple.
abstract def name: String
     The name of the field.
abstract def schema: String
     The name of the schema in the database from which the field originates
abstract def table: String
     The name of the table in the database from which the field originates

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

Method Detail

name

  abstract def name: String
The name of the field.

index

  abstract def index: Int
The index of the field in the tuple.

datatype

  abstract def datatype: DataType
The expected type of the field. This information is used for automatic transformation of the field value into a usable type.

catalog

  abstract def catalog: String
The name of the catalog in the database from which the field originates

schema

  abstract def schema: String
The name of the schema in the database from which the field originates

table

  abstract def table: String
The name of the table in the database from which the field originates