fetch abstract method

Future<SqlResult> fetch(
  1. int count, {
  2. ExecutionOptions options = const ExecutionOptions(),
})

Fetches at most count rows; an empty batch marks the end of the result.

count must be positive. Await a fetch before requesting the next batch.

Implementation

Future<SqlResult> fetch(
  int count, {
  ExecutionOptions options = const ExecutionOptions(),
});