WebIDLpedia

IDBFactory interface

Definition

Indexed Database API 3.0 defines IDBFactory



[Exposed=(Window,Worker)]
interface IDBFactory {
  [NewObject] IDBOpenDBRequest open(DOMString name,
                                    optional [EnforceRange] unsigned long long version);
  [NewObject] IDBOpenDBRequest deleteDatabase(DOMString name);

  Promise<sequence<IDBDatabaseInfo>> databases();

  short cmp(any first, any second);
};

Methods and attributes that return objects implementing IDBFactory

Referring IDL interfaces/dictionaries

Referring specifications