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
asked Dec 16, 2013 at 6:00
-
1Store the information in a server. Obviously if the user wants to delete their own data there's nothing you can do about it.JJJ– JJJ2013年12月16日 08:35:55 +00:00Commented Dec 16, 2013 at 8:35
1 Answer 1
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 .
answered Dec 16, 2013 at 9:40
2 Comments
mabi
"suggested" where? Can you please add a source?
Rajesh
@mabi sure bro..here is the link..stackoverflow.com/questions/3718349/html5-localstorage-security have fun!
default