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.

Constructors

this
this(ResultRange results)
Undocumented in source.

Alias This

rows

Members

Structs

CachedRow
struct CachedRow
Undocumented in source.

Variables

rows
CachedRow[] rows;
Undocumented in source.

See Also

cached for an example.

Meta