drift_sentry 2.0.1 drift_sentry: ^2.0.1 copied to clipboard
An integration which adds support for performance tracing for the Drift package.
Drift Sentry #
Note
The official package sentry_drift has been released. Please use this for new projects.
Sentry integration for the drift package.
Usage #
LazyDatabase _openConnection() {
return LazyDatabase(() async {
final dbFolder = await getApplicationDocumentsDirectory();
final file = File(p.join(dbFolder.path, 'db.sqlite'));
// Use .addSentry() to wrap QueryExecutor
return NativeDatabase.createInBackground(file).addSentry();
});
}