ParsedRowBuffer class
Parsed result buffer containing rows and column metadata.
Represents a complete query result set with column information and row data. Each row is a list of dynamic values.
Constructors
-
ParsedRowBuffer({required List<
ColumnMetadata> columns, required List<List> rows, required int rowCount, required int columnCount}) -
Creates a new ParsedRowBuffer instance.
const
Properties
- columnCount → int
-
Number of columns in the result set.
final
-
columns
→ List<
ColumnMetadata> -
Column metadata for all columns in the result set.
final
- hashCode → int
-
The hash code for this object.
no setterinherited
- rowCount → int
-
Number of rows in the result set.
final
-
rows
→ List<
List> -
Row data, where each row is a list of dynamic values.
final
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited