Hierarchy

  • EventTarget
    • IDBTransaction

Properties

Returns the transaction's connection.

MDN Reference

error: null | DOMException

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

MDN Reference

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

MDN Reference

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.

MDN Reference

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

Type declaration

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

Type declaration

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

Type declaration

Methods

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

    MDN Reference

    Returns void

  • Type Parameters

    Parameters

    Returns void

  • Parameters

    Returns void

  • Returns void

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

    MDN Reference

    Parameters

    • event: Event

    Returns boolean

  • Returns an IDBObjectStore in the transaction's scope.

    MDN Reference

    Parameters

    • name: string

    Returns IDBObjectStore

  • Type Parameters

    Parameters

    Returns void

  • Parameters

    Returns void

Generated using TypeDoc