WebIDLpedia

IDBRequest interface

Definition

Indexed Database API 3.0 defines IDBRequest

[Exposed=(Window,Worker)]
interface IDBRequest : EventTarget {
  readonly attribute any result;
  readonly attribute DOMException? error;
  readonly attribute (IDBObjectStore or IDBIndex or IDBCursor)? source;
  readonly attribute IDBTransaction? transaction;
  readonly attribute IDBRequestReadyState readyState;

  // Event handlers:
  attribute EventHandler onsuccess;
  attribute EventHandler onerror;
};

Methods and attributes that return objects implementing IDBRequest

Referring IDL interfaces/dictionaries