SqlRow Module
Helpers for extracting strongly-typed values from a SqlRow.
All helpers raise with a fully qualified table.column reference when the lookup fails
or the storage class is wrong.
Functions and values
| Function or value |
Description
|
Full Usage:
SqlRow.int table column row
Parameters:
string
-
Logical table name (used in error messages).
column : string
-
Column name to read.
row : SqlRow
-
The row to read from.
Returns: int
|
Reads a required
|
Full Usage:
SqlRow.text table column row
Parameters:
string
-
Logical table name (used in error messages).
column : string
-
Column name to read.
row : SqlRow
-
The row to read from.
Returns: string
|
Reads a required
|
Full Usage:
SqlRow.textOption table column row
Parameters:
string
-
Logical table name (used in error messages).
column : string
-
Column name to read.
row : SqlRow
-
The row to read from.
Returns: string option
|
Reads an optional
|
ProcessCore