Struct CachedResults

Stores all the results of a query.

struct CachedResults ;

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.

See Also

cached for an example.