Col
const class Col : Obj
Col models a column of a relational table. Columns are accessed from rows with Row.col and Row.cols
Construct a column for the given meta-data
The type of the column as defined by the SQL database
Name of the column
Zero based index of the column in the query result
Type of the column
Return name
const Int : index
Zero based index of the column in the query result.
new make(Int index, Str name, Type type, Str sqlType)
Construct a column for the given meta-data.
const Str : name
Name of the column.
const Str : sqlType
The type of the column as defined by the SQL database. See type mapping.
virtual Str toStr()
Return name.
const Type : type
Type of the column. See type mapping.