haXe API Documentation
Back | Index
extern class js.html.idb.Factory
Available in js

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.



Documentation for this class was provided by MDN.
function cmp(first : Key, second : Key) : Int
function deleteDatabase(name : String) : VersionChangeRequest
function getDatabaseNames() : Request
function open(name : String, ?version : Int) : OpenDBRequest
Back | Index