SqfliteDatabaseExecutorIterateExt extension

Iterate extension on DatabaseExecutor

on

Methods

queryIterate(String table, {bool? distinct, List<String>? columns, String? where, List<Object?>? whereArgs, String? groupBy, String? having, String? orderBy, int? limit, int? offset, int? bufferSize, required SqfliteCursorRowCallback onRow}) Future<void>

Available on DatabaseExecutor, provided by the SqfliteDatabaseExecutorIterateExt extension

Iterate over the results of a query.
rawQueryIterate(String sql, List<Object?>? arguments, {int? bufferSize, required SqfliteCursorRowCallback onRow}) Future<void>

Available on DatabaseExecutor, provided by the SqfliteDatabaseExecutorIterateExt extension

Iterate over the results of a raw query.