I guess you can think of a collection and set as the same thing. The key is that you can iterate through it like:
for row in rows:
if row.myfield == 'Joe':
...
That's just a style thing if you want to separate out the query from the
rest of the db() function.

