FetchedRows
FetchedRows is a term used in software development to denote the collection of data rows returned by a fetch operation from a data source, such as a database, a web API, or a file. It represents the actual data values retrieved rather than the query itself or metadata.
In practice, fetchedRows may be stored as a list, array, or other container in memory, and is
Fetching strategies: eager fetching loads all rows into fetchedRows at once, while lazy or streaming fetching
Considerations: the consistency of fetchedRows depends on the state of the data source; if the underlying data
See also: result set, cursor, fetch, pagination, lazy loading, data access layer.