ResultSetRow class
Represents result set row data
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- numOfColumns → int
-
Get number of columns for this row
no setter
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
assoc(
) → Map< String, String?> - Get data for all columns
-
colAt(
int colIndex) → String? - Get column data by column index (starting form 0)
-
colByName(
String columnName) → String? - Get column data by column name
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
-
typedAssoc(
) → Map< String, dynamic> - Same as assoc but detects best dart type for columns, and converts string data into appropriate types
-
typedColAt<
T> (int colIndex) → T? -
Same as colAt but performs conversion of string data, into provided type
T
, if possible -
typedColByName<
T> (String columnName) → T? -
Same as colByName but performs conversion of string data, into provided type
T
, if possible
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited