Scala Library Documentation
|
|
scala/dbc/result/FieldMetadata.scala
]
abstract
class
FieldMetadata
extends
AnyRefFieldMetadata provides informations attached to
a field about its content and its relationship to the originating database.
Method Summary | |
abstract def
|
catalog
: java.lang.String
The name of the catalog in the database from which the field originates
|
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.
|
abstract def
|
index
: 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
|
Methods inherited from AnyRef | |
getClass, hashCode, equals, clone, toString, notify, notifyAll, wait, wait, wait, finalize, ==, !=, eq, ne, synchronized |
Methods inherited from Any | |
==, !=, isInstanceOf, asInstanceOf |
Method Details |
abstract
def
name : java.lang.String
abstract
def
index : Int
abstract
def
datatype : DataType
abstract
def
catalog : java.lang.String
abstract
def
schema : java.lang.String
abstract
def
table : java.lang.String
Scala Library Documentation
|
|