Struct UnsafeRow

An UnsafeRow is almost identical to a SafeRow, except that it provides access to its values via Variant instead of MySQLVal. This makes the access unsafe. Only value access is unsafe, every other operation is forwarded to the internal SafeRow.

struct UnsafeRow ;

Use the safe or unsafe UFCS methods to convert to and from these two types if needed.

Note that there is a performance penalty when accessing via a Variant as the MySQLVal must be converted on every access.

See the Safe Migration document for more details.

Methods

NameDescription
opIndex (idx) Converts SafeRow.opIndex result to Variant.