You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
jsi::detail::throwJSError(rt, "[react-native-quick-sqlite][execSQLBatch] - An array of SQL commands or parameters is needed");
196
-
return {};
197
+
auto res = jsi::Object(rt);
198
+
res.setProperty(rt, "status", jsi::Value(1));
199
+
res.setProperty(rt, "message", jsi::String::createFromUtf8(rt, "[react-native-quick-sqlite][execSQLBatch] - An array of SQL commands or parameters is needed"));
jsi::detail::throwJSError(rt, "[react-native-quick-sqlite][execSQLBatch] - No SQL Commands found");
209
-
return {};
212
+
auto res = jsi::Object(rt);
213
+
res.setProperty(rt, "status", jsi::Value(1));
214
+
res.setProperty(rt, "message", jsi::String::createFromUtf8(rt, "[react-native-quick-sqlite][execSQLBatch] - No SQL Commands found on batch index " + i));
0 commit comments