The IDBFactory
interface of the IndexedDB API lets applications asynchronously access the indexed databases. The object that implements the interface is window.indexedDB
. You open—that is, create and access—and delete a database with the object and not directly with IDBFactory
.
This interface still has vendor prefixes, that is to say, you have to make calls with mozIndexedDB.open()
for Firefox and webkitIndexedDB.open()
for Chrome.