in scala.dbc.result
class Tuple

abstract class Tuple
extends java.lang.Object
with scala.ScalaObject
An ISO-9075:2003 (SQL) table row. This is equivalent to a tuple in the relational model.

Constructor Summary
def this



Def Summary
def apply ( index : scala.Int ) : scala.dbc.result.Field
The field at the given index. If there is no such field (that is the index is out of bounds), None is returned instead.
def apply ( name : java.lang.String ) : scala.dbc.result.Field
The field with the given column name. If there is no such field, None is returned instead.
def fields : scala.List[scala.dbc.result.Field]
All the fields contained in the tuple.
def originatingRelation : scala.dbc.result.Relation
The relation that contains the tuple.


Constructor Detail
def this

Def Detail
def apply ( index : scala.Int ) : scala.dbc.result.Field
The field at the given index. If there is no such field (that is the index is out of bounds), None is returned instead.

def apply ( name : java.lang.String ) : scala.dbc.result.Field
The field with the given column name. If there is no such field, None is returned instead.

def fields : scala.List[scala.dbc.result.Field]
All the fields contained in the tuple.

def originatingRelation : scala.dbc.result.Relation
The relation that contains the tuple.