CachedResults

Stores all the results of a query.

The CachedResults struct is equivalent to an array of 'rows', which in turn can be viewed as either an array of ColumnData or as an associative array of ColumnData indexed by the column names.

Unlike ResultRange, CachedResults is a random-access range of rows, and its data always remain available.

struct CachedResults {
CachedRow[] rows;
}

Alias This

rows

See Also

cached for an example.

Meta