angular-indexedDB
angular-indexedDB copied to clipboard
An angularjs serviceprovider to utilize indexedDB with angular
Can someone explain the difference between these 2 methods? They both seem to return an array of all items in the object store. For a very large set of records,...
Hello, I have an issue here where I need to get the last 2000 records from an indexeddb store. Since it's used for logging, the value on a record can...
This is not a project that I actively work on anymore. Please keep that in mind when you ask for things via this repo. **Is your issue a question?** Please...
The same code in IE seems to take as huge amount of time when calling getAll() as compared to Chrome. In Chrome this code runs in
The project for which this project was written is going EOL and that means that this is highly unlikely to see any active use from me for a very long...
Here we call `@defer.reject()` with two arguments: https://github.com/bramski/angular-indexedDB/blob/master/src/angular-indexed-db.coffee#L161-L171 The second argument of `reject` method is ignored, so actual error is lost and we just get "Transaction Error" string in promise.
upgradeDB function stores the upgrade callback functions with its version number as a key in javascript associative arrays. But the ordering of key is not guaranteed to be preserved in...
Unless I'm reading this wrong, I think to insert data during config/upgrade time you need to go through the native objects, transactions, etc. It would be nice to get the...
I'm new to indexedDB and trying to create complex keys as the example below, but it is giving me error var aStore = db.createObjectStore('aStore', {keyPath: ['a_id', 'b_code']}); a.createIndex('c_idx', {'c' :...
I know its not recommended but if there is a good use case for it, what is the least detrimental way of doing it?