Reputation: 1518
The following code:
request=window.webkitIndexedDB.open('tileStore');
yields a request with error: exception 11. Open works for other databases. Additionally,
request=window.webkitIndexedDB.deleteDatabase('tileStore')
correctly yields a IDBVersionChangeRequest
with error 11.
How do I reset the db's state without opening or deleting it?
Upvotes: 2
Views: 1053
Reputation: 4180
Maybe try to delete the database your self manually. I wrote a post about it a while ago. If the spec is correctly implemented an exception with errorCode 11 should mean you have a quota err. Meaning you reached the maximum file size for the database.
Upvotes: 1