IDBRequest

open class IDBRequest<T : JsAny?> : EventTarget(source)

The IDBRequest interface of the IndexedDB API provides access to results of asynchronous requests to databases and database objects using event handler attributes.

MDN Reference

Inheritors

Properties

Link copied to clipboard

The error read-only property of the IDBRequest interface returns the error in the event of an unsuccessful request.

Link copied to clipboard

The readyState read-only property of the IDBRequest interface returns the state of the request.

Link copied to clipboard
val result: T

The result read-only property of the IDBRequest interface returns the result of the request.

Link copied to clipboard

The source read-only property of the IDBRequest interface returns the source of the request, such as an Index or an object store.

Link copied to clipboard

The transaction read-only property of the IDBRequest interface returns the transaction for the request, that is, the transaction the request is being made inside.

Functions

Link copied to clipboard
Link copied to clipboard