RowReader class

A class provide a method to read data from select query.

Properties

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 by index.
blobValueBy(String name) Uint8List?
Read binary value by name.
doubleValueAt(int index) double?
Read a double value by index.
doubleValueBy(String name) double?
Read a double value by name.
intValueAt(int index, [bool bit32 = false]) int?
Read an integer value by index.
intValueBy(String name, [bool bit32 = false]) int?
Read an integer value by name.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
stringValueAt(int index) String?
Read a string value by index.
stringValueBy(String name) String?
Read a string value by name.
toString() String
A string representation of this object.
inherited
valueAt<T>(int index) → T?
Read an appropriate value from SQLite Value or Column based on SQLite type affinity 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