IDBFactory
The IDBFactory
interface of the IndexedDB API lets applications asynchronously access the indexed databases.
Functions
Link copied to clipboard
The databases
method of the IDBFactory interface returns a Promise that fulfills with an array of objects containing the name and version of all the available databases.
Link copied to clipboard
Link copied to clipboard
The deleteDatabase()
method of the returns an IDBOpenDBRequest object immediately, and performs the deletion operation asynchronously.
Link copied to clipboard
The open()
method of the IDBFactory interface requests opening a connection to a database.