2026-02-07 16:01:37 +00:00
|
|
|
import 'package:drift/drift.dart';
|
|
|
|
|
import 'package:drift/web.dart';
|
|
|
|
|
|
|
|
|
|
|
2026-02-14 13:06:23 +00:00
|
|
|
LazyDatabase openConnection() {
|
2026-02-07 16:01:37 +00:00
|
|
|
return LazyDatabase(() async {
|
|
|
|
|
// For web, use the web implementation
|
|
|
|
|
return WebDatabase.withStorage(
|
|
|
|
|
await DriftWebStorage.indexedDb('formulas_db'),
|
|
|
|
|
);
|
|
|
|
|
});
|
|
|
|
|
}
|