karma
karma
Thanks for your quick response. I tried db.drop(true) but when I check on Developer Tools of chrome, I can see the data in indexedDB. May it be caused by other...
Hi Irrelon, Yes I refreshed the indexedDB data right after dropping DB. But I tried another way. After dropping DB, I tried to load collection again and I can found...
I am using Version 1.3.867. For your information, I am using ForerunnerDB add-on for Chrome. May it cause the issue ?
I found the difference. The unit test for this function is the intermediate logic. That means DB starts with some collections, persist then drop DB. While my case is: refreshing...
I created test.html with code below: ``` js var fdb = new ForerunnerDB(), db = fdb.db('test'); db.collection('test'); db.load(function () { console.log('Loaded', arguments); console.log('Current data', db.collection('test').find()); db.collection('test').insert({_id: 0, test: true}); console.log('Current...
Firstly, I changed to new version 1.3.909. The js error go away. Secondly, I found the problem. DB cannot be dropped/loaded without knowing in advance which collections it have. So,...
Thanks a lot for your effort