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
then I do
nSQL("table2")
.model([
{ something}
])
.config({
id: "myDB1",
mode: "PERM",
history: false
})
.connect();
An error will occur saying something like could not find store object. Then I have to change db to a new name. The other way is delete the indexedDB in chrome dev and build the tables again.
The text was updated successfully, but these errors were encountered:
The error message is
app.js:66916 Uncaught (in promise) DOMException: Failed to execute 'transaction' on 'IDBDatabase': One of the specified object stores was not found.
at _IndexedDBStore.store (http:///js/app.js:66916:36)
at getIDBIndex_1 (http:///js/app.js:66886:27)
at http:///js/app.js:66902:21
at http:///js/app.js:12181:13
at new Promise ()
at http://js/app.js:12180:16
at Array.map ()
at Object.exports.fastALL (http:///js/app.js:12179:46)
at IDBOpenDBRequest.idb.onsuccess (http://*****/js/app.js:66901:29)
Marking this as resolved since there's been no response for several days. Feel free to reopen the issue if you run into the problem again/have more questions.
First I do this:
nSQL("table1")
.model([
{ something}
])
.config({
id: "myDB1",
mode: "PERM",
history: false
})
.connect();
then I do
nSQL("table2")
.model([
{ something}
])
.config({
id: "myDB1",
mode: "PERM",
history: false
})
.connect();
An error will occur saying something like could not find store object. Then I have to change db to a new name. The other way is delete the indexedDB in chrome dev and build the tables again.
The text was updated successfully, but these errors were encountered: