Martin Baláž

Results 4 comments of Martin Baláž

The iterator can be also named `sets()` to be more compatible with `nextset()`.

I agree, it is a little bit confusing. I prefer either the first option or: ```python for _ in cursor.results(): for record in cursor: blah(record) ```

Another possible name could be `result_sets()`.

I agree, it should be async. This is somehow related to the question, if `params_seq` in `executemany` should also be `AsyncIterable[Row]` or at least `AsyncIterable[Row] | Iterable[Row]`. If both `params_seq`...