axemclion / jquery-indexeddb

An IndexedDB Plugin for Jquery.
Other
195 stars 71 forks source link

iOS8 db create #68

Closed shaunmccann-87 closed 7 years ago

shaunmccann-87 commented 9 years ago

I am having massive trouble getting the plugin to create my database on ios8 devices. It's throwing out exception 8 which of course is object store not found.

Tried running some none plugin create db code and seemed happy so i am thinking we must have a bug with the jquery plugin?

axemclion commented 9 years ago

Can you share the non plugin code ?

shaunmccann-87 commented 9 years ago

I can but the code is fairly simple, i am literally getting the object store

open: function (objectStore) { return vm.db().objectStore(objectStore); },

var configTable = offlineDm.open('config'); configTable.put(obj, currentUser);

This code works and has worked for a number of months, only since ios8 has the problem arose.