drift_sentry 1.0.1 drift_sentry: ^1.0.1 copied to clipboard
Sentry integration for the drift package.
Drift Sentry #
Sentry integration for the drift package.
Usage #
Wrap QueryExecutor
in SentryQueryExecutor
.
LazyDatabase _openConnection() {
return LazyDatabase(() async {
final dbFolder = await getApplicationDocumentsDirectory();
final file = File(p.join(dbFolder.path, 'db.sqlite'));
return SentryQueryExecutor(NativeDatabase.createInBackground(file));
});
}