-
-
Notifications
You must be signed in to change notification settings - Fork 641
IndexedDB on Safari
David Fahlander edited this page Aug 7, 2015
·
4 revisions
- No support for indexedDB
- There's a shim that builds indexedDB support on top of WebSQL: IndexedDBShim. This shim is not bug free either though but under constant development
- Native support for indexedDB but has lots of issues:
- Transactions can only target a single object store at a time.
- Primary keys must be unique across different objects stores.
- Compound indexes or primary keys are not supported.
- MultiEntry indexes not supported.
Dexie.js - minimalistic and bullet proof indexedDB library