Row class

Default row object represent row data of the result set from select query.

Mixed in types

Constructors

Row(RowReader dataReader)

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.
inherited
blobValueBy(String name) Uint8List?
Read binary value from SQLite statement result by name.
inherited
doubleValueAt(int index) double?
Read a double value from SQLite statement result by index.
inherited
doubleValueBy(String name) double?
Read a double value from SQLite statement result by name.
inherited
intValueAt(int index, [bool bit32 = false]) int?
Read an integer value from SQLite statement result by index.
inherited
intValueBy(String name, [bool bit32 = false]) int?
Read an integer value from SQLite statement result by name.
inherited
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.
inherited
stringValueBy(String name) String?
Read a string value from SQLite statement result by name.
inherited
toString() String
A string representation of this object.
inherited
valueAt<T>(int index) → T?
Read an appropriate value from SQLite statement result by index.
inherited
valueBy<T>(String name) → T?
Read an appropriate value from SQLite statement result by name.
inherited

Operators

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