We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3e6915f commit 8a596b1Copy full SHA for 8a596b1
1 file changed
lib/storage/providers/SQLiteProvider.ts
@@ -9,6 +9,11 @@ import type StorageProvider from './types';
9
import utils from '../../utils';
10
import type {KeyList, KeyValuePairList} from './types';
11
12
+// By default, NitroSQLite does not accept nullish values due to current limitations in Nitro Modules.
13
+// This flag enables a feature in NitroSQLite that allows for nullish values to be passed to operations, such as "execute" or "executeBatch".
14
+// Simple null handling can potentially add a minor performance overhead,
15
+// since parameters and results from SQLite queries need to be parsed from and to JavaScript nullish values.
16
+// https://github.com/margelo/react-native-nitro-sqlite#sending-and-receiving-nullish-values
17
enableSimpleNullHandling();
18
19
/**
0 commit comments