PDF (A4) - 40.1Mb
Man Pages (TGZ) - 259.0Kb
Man Pages (Zip) - 366.2Kb
Info (Gzip) - 4.0Mb
Info (Zip) - 4.0Mb
ARow object models a row in a result set.Row provides the methods listed here:
getField(String: Returns the value of the first field namedname)name. You can retrieve the name usinggetColumnLabel().
In addition, the API provides the following convenience mechanisms for looking up a column value in a given row:
Rowobject property lookup: The column name can be used directly as an object property as long as it is a legal JavaScript identifier.Example:
row.my_column.Rowobject key lookup: The column name, quoted, can be used as a key name.Example:
row['my_column'].Rowobject index lookup: A valid column index can be used to look up the column value.Example:
row[2].
PDF (A4) - 40.1Mb
Man Pages (TGZ) - 259.0Kb
Man Pages (Zip) - 366.2Kb
Info (Gzip) - 4.0Mb
Info (Zip) - 4.0Mb