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
{{ message }}
This repository has been archived by the owner on Oct 12, 2022. It is now read-only.
Store created with.
db.createObjectStore("myStore",{keyPath:"myKey",autoIncrement :true});
for
store.put({value:"someValue"});
No data appears to be inserted.
but
store.put({myKey:1,value:"someValue"});
will insert data, but having to set the key value defeats the purpose of having an autoIncrement key.
The text was updated successfully, but these errors were encountered:
Store created with.
db.createObjectStore("myStore",{keyPath:"myKey",autoIncrement :true});
for
store.put({value:"someValue"});
No data appears to be inserted.
but
store.put({myKey:1,value:"someValue"});
will insert data, but having to set the key value defeats the purpose of having an autoIncrement key.
The text was updated successfully, but these errors were encountered: