RowMixin mixin

A mixin for row data in the result from select query.

Mixin Applications

Properties

dataReader → RowReader
reader to read value from SQL result set.
finalinherited
hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

blobValueAt(int index) Uint8List?
Read binary value from SQLite statement result by index.
blobValueBy(String name) Uint8List?
Read binary value from SQLite statement result by name.
doubleValueAt(int index) double?
Read a double value from SQLite statement result by index.
doubleValueBy(String name) double?
Read a double value from SQLite statement result by name.
intValueAt(int index, [bool bit32 = false]) int?
Read an integer value from SQLite statement result by index.
intValueBy(String name, [bool bit32 = false]) int?
Read an integer value from SQLite statement result by name.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
stringValueAt(int index) String?
Read a string value from SQLite statement result by index.
stringValueBy(String name) String?
Read a string value from SQLite statement result by name.
toString() String
A string representation of this object.
inherited
valueAt<T>(int index) → T?
Read an appropriate value from SQLite statement result by index.
valueBy<T>(String name) → T?
Read an appropriate value from SQLite statement result by name.

Operators

operator ==(Object other) bool
The equality operator.
inherited