Questions tagged [indexeddbshim]

Indexeddbshim is a javascript library that provides IndexedDB support to any web browser that supports WebSql but does not natively support IndexedDB. Used in mobile development when targeting both Android and IOS.

Indexeddbshim is a javascript library that provides IndexedDB support to any web browser that supports WebSql but does not natively support IndexedDB. Used in mobile development when targeting both Android and IOS.

5 questions
2
votes
0 answers

How to save SubtleCrypto keypair in persistent storage on Safari

I have created public and private key using SubtleCrypto api. I am using webcrypto-shim to overcome some of the unimplemented methods of subtle in Safari. I am able to generate a keypair and sign my data with it. Then I try to save my keypair on…
Yuri N
  • 76
  • 4
2
votes
1 answer

How to reopen existing indexedDB database on another page

I have created indexedDB database that contain multiple table and data. now i want to reopen existing indexedDB database and want to read data from specific tables.please help me
kashyap
  • 31
  • 3
0
votes
2 answers

Persist IndexedDB in cordova app when app updates

I have an Android app built using Cordova. Version 1, which has been released for a while, stores some data using IndexedDB. I’m ready to release the next version but updating the app wipes all the data stored in IndexedDB. What I noticed is that on…
klaudiusnaban
  • 196
  • 1
  • 10
0
votes
0 answers

access the data in indexeddb outside request.onsuccess local storage indexeddb

I want to access the variable data mentioned in the code below, outside the idQuery block. I am getting data = {} outside that block. const indexedDB = window.indexedDB; if (!indexedDB) { console.log("IndexedDB could not be found in this…
Suyog
  • 1
  • 2
0
votes
2 answers

Getting error in indexeddbshim: DOM Exception 11: An attempt was made to use an object that is not, or is no longer, usable

I'm using the IndexedDBShim polyfill for iOS 7.1 (so underlying is WebSQL) and when I try to run it, I get: "InvalidStateError: DOM Exception 11: An attempt was made to use an object that is not, or is no longer, usable." The code: //Create and…
Don Rhummy
  • 24,730
  • 42
  • 175
  • 330