SafeRow.opIndex

Simplify retrieval of a column value by index.

To check for null, use MySQLVal's kind property: row[index].kind == MySQLVal.Kind.Null or use a direct comparison to null: row[index] == null

More...
struct SafeRow
@safe ref inout
inout(MySQLVal)
opIndex
(
size_t i
)

Return Value

Type: inout(MySQLVal)

A MySQLVal holding the column value.

Detailed Description

Type Mappings

$(TYPE_MAPPINGS)

Meta