in scala.dbc.result
class FieldMetadata

abstract class FieldMetadata
extends java.lang.Object
with scala.ScalaObject
The class FieldMetadata provides informations attached to a field about its content and its relationship to the originating database.

Constructor Summary
def this

Def Summary
abstract def catalog : java.lang.String
The name of the catalog in the database from which the field originates
abstract def datatype : scala.dbc.DataType
The expected type of the field. This information is used for automatic transformation of the field value into a usable type.
abstract def index : scala.Int
The index of the field in the tuple.
abstract def name : java.lang.String
The name of the field.
abstract def schema : java.lang.String
The name of the schema in the database from which the field originates
abstract def table : java.lang.String
The name of the table in the database from which the field originates
Constructor Detail
def this

Def Detail
abstract def catalog : java.lang.String
The name of the catalog in the database from which the field originates

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

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

abstract def name : java.lang.String
The name of the field.

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

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