Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 647 Bytes

28.what-is-an-indexeddb.md

File metadata and controls

15 lines (11 loc) · 647 Bytes

29 what is an IndexedDB?

  • IndexedDB is javascript based object oriented database.
  • IndexedDB is useful when we want to store large amount of data in a web applications.
  • IndexedDB stores data as key-value pair.
  • IndexedDB is an asynchronous API.
  • IndexedDB is supported in most of browsers.

Usage

  • Specify DB schema.
  • Open a connection to DB.
  • Adding, Retrieval & Updating the data is done within a series of transactions.

More information on API