Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

Index

Properties

Readonly db

Returns the transaction's connection.

Readonly error

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

Readonly mode

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

Readonly objectStoreNames

objectStoreNames: <internal>.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: null | ((ev: <internal>.Event) => any)

oncomplete

oncomplete: null | ((ev: <internal>.Event) => any)

onerror

onerror: null | ((ev: <internal>.Event) => any)

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

  • 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 <internal>.IDBObjectStore

removeEventListener

Generated using TypeDoc