IDBOpenDBRequest
The IDBOpenDBRequest
interface of the IndexedDB API provides access to the results of requests to open or delete databases (performed using IDBFactory.open and IDBFactory.deleteDatabase), using specific event handler attributes.
Properties
Link copied to clipboard
Link copied to clipboard
The error
read-only property of the request.
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
The readyState
read-only property of the Every request starts in the pending
state.
Link copied to clipboard
The result
read-only property of the any - InvalidStateError
DOMException - : Thrown when attempting to access the property if the request is not completed, and therefore the result is not available.
Link copied to clipboard
open override val successEvent: EventInstance<IDBVersionChangeEvent, IDBOpenDBRequest, IDBOpenDBRequest>
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.
Link copied to clipboard