We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b8121c2 commit 28cf266Copy full SHA for 28cf266
lib/src/sqlite_database.dart
@@ -15,8 +15,10 @@ import 'update_notification.dart';
15
16
/// A SQLite database instance.
17
///
18
-/// Use one instance per database file. If multiple instances are used, update
19
-/// notifications may not trigger, and calls may fail with "SQLITE_BUSY" errors.
+/// Use one instance per database file where feasible.
+///
20
+/// If multiple instances are used, update notifications will not be propagated between them.
21
+/// For update notifications across isolates, use [isolateConnectionFactory].
22
class SqliteDatabase with SqliteQueries implements SqliteConnection {
23
/// The maximum number of concurrent read transactions if not explicitly specified.
24
static const int defaultMaxReaders = 5;
0 commit comments