@op-engineering/op-sqlite 7.4.0 → 7.4.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/cpp/DBHostObject.cpp
CHANGED
|
@@ -177,8 +177,8 @@ DBHostObject::DBHostObject(jsi::Runtime &rt, std::string &base_path,
|
|
|
177
177
|
thread_pool(thread_pool), db_name(db_name), rt(rt) {
|
|
178
178
|
|
|
179
179
|
#ifdef OP_SQLITE_USE_SQLCIPHER
|
|
180
|
-
BridgeResult result =
|
|
181
|
-
|
|
180
|
+
BridgeResult result = opsqlite_open(db_name, path, crsqlite_path,
|
|
181
|
+
sqlite_vec_path, encryption_key);
|
|
182
182
|
#elif OP_SQLITE_USE_LIBSQL
|
|
183
183
|
BridgeResult result = opsqlite_libsql_open(db_name, path, crsqlite_path);
|
|
184
184
|
#else
|
|
@@ -37,10 +37,8 @@
|
|
|
37
37
|
<key>XCFrameworkFormatVersion</key>
|
|
38
38
|
<string>1.0</string>
|
|
39
39
|
<key>CFBundleVersion</key>
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
<key>MinimumOSVersion</key>
|
|
44
|
-
<string>8.0</string>
|
|
40
|
+
<string>1.0.0</string>
|
|
41
|
+
<key>CFBundleShortVersionString</key>
|
|
42
|
+
<string>1.0.0</string>
|
|
45
43
|
</dict>
|
|
46
44
|
</plist>
|
|
Binary file
|
|
Binary file
|