insertRaw method
Implementation
@override
Future<void> insertRaw(
IDatabaseTable table,
IDbInsertDataRawMapper mapper,
) async {
if (db == null) await createTable(table);
final cmd = InsertCommandBuilder(table, mapper).command;
await db!.execute(cmd);
IDbManager.insertStream.add(mapper);
}