select abstract method

ResultSet select([
  1. List<Object?> parameters = const <Object>[]
])

Selects all rows into a ResultSet.

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, a SqliteException will be thrown.

Implementation

ResultSet select([List<Object?> parameters = const <Object>[]]);