With most drivers for most relational databases, the default and preferred way to access results is to use a cursor or iterator.
What I'm guessing is that the database does something like:
- Runs the query.
- Prepares the result, stores it in RAM?
- Returns the cursor for the result to the client.
Whenever the database driver gets a call to fetch the next result, it passes that cursor to the database, which gives the next result.
However, I'm not sure if that's really correct. One thing that stumps me is that if the database client and database server are on different nodes and communicating via the network, isn't this slow? Does it really use such a lazy approach? It makes sense not to return all the data, but is there some middle path it takes?
The database sends the complete result set in one go. The cursor/iterator is in the driver on the client side.