Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IDBTransaction

Hierarchy

Index

Properties

Returns the transaction's connection.

If the transaction was aborted, returns the error (a DOMException) providing the reason.

Returns the mode the transaction was created with ("readonly" or "readwrite"), or "versionchange" for an upgrade transaction.

objectStoreNames: DOMStringList

Returns a list of the names of object stores in the transaction's scope. For an upgrade transaction this is all object stores in the database.

onabort: null | ((this: IDBTransaction, ev: Event) => any)
oncomplete: null | ((this: IDBTransaction, ev: Event) => any)
onerror: null | ((this: IDBTransaction, ev: Event) => any)

Methods

  • abort(): void
  • Aborts the transaction. All pending requests will fail with a "AbortError" DOMException and all changes made to the database will be reverted.

    Returns void

  • dispatchEvent(event: Event): boolean
  • Dispatches a synthetic event event to target and returns true if either event's cancelable attribute value is false or its preventDefault() method was not invoked, and false otherwise.

    Parameters

    Returns boolean

  • objectStore(name: string): IDBObjectStore
  • Returns an IDBObjectStore in the transaction's scope.

    Parameters

    • name: string

    Returns IDBObjectStore

Generated using TypeDoc