Struct SafeRow
A struct to represent a single row of a result set.
Constructors
Name | Description |
this
(con, packet, rh, binary)
|
A constructor to extract the column data from a row data packet.
|
Properties
Name | Type | Description |
length [get]
|
ulong | Get the number of elements (columns) in this row.
|
Methods
Name | Description |
getName
(index)
|
Get the name of the column with specified index.
|
isNull
(i)
|
Check if a column in the result row was NULL
|
opIndex
(i)
|
Simplify retrieval of a column value by index.
|
toStruct
(s)
|
Move the content of the row into a compatible struct
|
Aliases
Name | Description |
opDollar
|
Get the number of elements (columns) in this row.
|