openCursor abstract method

Future<SqlCursor> openCursor(
  1. SqlCommand command, {
  2. ExecutionOptions options = const ExecutionOptions(),
})

Opens a bounded-fetch cursor when the driver supports streaming.

Engine-specific transaction requirements still apply. Close the cursor before returning its connection lease.

Implementation

Future<SqlCursor> openCursor(
  SqlCommand command, {
  ExecutionOptions options = const ExecutionOptions(),
});