Johan
Johan

Reputation: 35223

html5 localstorage and web sql storage

I would like to know if html5 localstorage has anything to do with web sql storage.

Can you for example create a localstorage object and make queries on it using the web sql storage syntax?

Also, what is the difference between indexedDB and web sql storage?

Thanks

Upvotes: 1

Views: 516

Answers (1)

Maurice
Maurice

Reputation: 27632

There is no relation other than they can store data locally.

  • LocalStorage is simple key/value store
  • WebSQL has been deprecated and is not going forward
  • IndexedDB is a JSON object document store replacing WebSQL.

Upvotes: 1

Related Questions