Karish Karish
Karish Karish

Reputation: 269

HTML5 Web Storage and Web SQL Database

Is it possible to store the information in both Web Storage and Web SQL forever because it deletes the information after the user clears the browsing data. if its not possible what should i do to fix it

Upvotes: 0

Views: 313

Answers (1)

Rajesh
Rajesh

Reputation: 3034

You cannot store information in websql and web storage forever. It is not suggested to store any critical data in these storage and rather any data stored in these storage should be synchronized with server db .

Upvotes: 1

Related Questions