Home  >  Article  >  Web Front-end  >  IndexedDB in HTML5

IndexedDB in HTML5

王林
王林forward
2023-09-07 16:37:02838browse

IndexedDB in HTML5

#indexeddb is a new HTML5 concept for storing data in the user's browser. indexeddb is more powerful than local storage and useful for applications that need to store large amounts of data. These apps run more efficiently and load faster.

The W3C has announced that Web SQL Database is a deprecated local storage specification and therefore web developers should no longer use the technology.

Indexeddb is a web SQL database alternative that is more efficient than older technologies.

The following is the functionality -

  • Storing key pair values
  • Not a relational database
  • The IndexedDB API is mostly asynchronous
  • Not a structured query language
  • Access data from the same domain

The above is the detailed content of IndexedDB in HTML5. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:tutorialspoint.com. If there is any infringement, please contact admin@php.cn delete