IndexedDB

When you select an origin inside the Indexed DB storage type in the storage tree of the Storage Inspector, a table lists the details of all the databases present for that origin.

Note

The data shown in an IndexedDB database is a snapshot of the data as it was when you opened the Storage Inspector tool.

Databases have the following details:

  • Database Name — The name of the database.

  • Storage — The storage type specified for the database.

  • Origin — The origin of the database.

  • Version — The database version.

  • Object Stores — The number of object stores in the database.

When an IndexedDB database is selected in the storage tree, details about all the object stores are listed in the table. Any object store has the following details:

  • Object Store Name — The name of the object store.

  • Key — The keyPath property of the object store.

  • Auto Increment — Is automatic incrementation of the keys enabled?

  • Indexes — Array of indexes present in the object store as shown below.

../../../_images/indexed_db_details.png

When an object store is selected in the storage tree, all the items in that object store are listed in the table. All items have a key and a value associated with them.

You can delete an IndexedDB database using the context menu in the storage tree:

../../../_images/indexed_db_context_menu.png

If the database cannot be deleted (most commonly because there are still active connections to the database), a warning message will be displayed in the Storage Inspector:

../../../_images/indexeddb_delete_warning.png

You can use the context menu in the table widget to delete all items in an object store, or a particular item:

../../../_images/indexed_db_table_widget_context.png