selectCursor abstract method

IteratingCursor selectCursor([
  1. List<Object?> parameters = const <Object>[]
])

Starts selecting rows by running this prepared statement with the given parameters.

If the parameters list does not match the amount of parameters in the original SQL statement (parameterCount), an ArgumentError will be thrown.

If sqlite3 reports an error while running this statement, it will be thrown by a call to Iterator.moveNext.

The iterator returned here will become invalid with the next call to execute, select or selectCursor.

Implementation

IteratingCursor selectCursor([List<Object?> parameters = const <Object>[]]);