How to insert quickly multiple records in sqflite? The standard quickly method is:
await database.insert(table, object.toMap())
<
You can use batch in such case.
batch = db.batch();
batch.insert('Test', {'name': 'item'});
batch.update('Test', {'name': 'new_item'}, where: 'name = ?', whereArgs: ['item']);
batch.delete('Test', where: 'name = ?', whereArgs: ['item']);
results = await batch.commit();
big batches,you can use await batch.commit(noResult: true);