ResultSet class

The metadata and rows that comprise a query result set. The metadata describes the column structure and data types. To return a ResultSet object, use GetQueryResults.

Constructors

ResultSet({ResultSetMetadata? resultSetMetadata, List<Row>? rows})
ResultSet.fromJson(Map<String, dynamic> json)
factory

Properties

hashCode int
The hash code for this object.
no setterinherited
resultSetMetadata ResultSetMetadata?
The metadata that describes the column structure and data types of a table of query results.
final
rows List<Row>?
The rows in the table.
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