Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IDBTransaction

Package version

Hierarchy

Index

Properties

EventTarget

EventTarget: { constructor: any; prototype: EventTarget }

Type declaration

  • constructor: function
    • Returns EventTarget

  • prototype: EventTarget

db

Returns the transaction's connection.

error

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

mode

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

objectStoreNames

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

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

oncomplete

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

onerror

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

Methods

abort

  • 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

addEventListener

dispatchEvent

  • 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

  • Returns an IDBObjectStore in the transaction's scope.

    Parameters

    • name: string

    Returns IDBObjectStore

removeEventListener

Generated using TypeDoc