Using Local Database W/ Jquery Mobile?
I'm writing a web application with using JQuery. My application will mostly work on Android. I want to have a local database at the client's side so that my web application can sto
Solution 1:
Look to : localStorageDB plugin
localStorageDB is a simple layer over localStorage that provides a set of functions to store structured data like databases and tables. It provides basic insert/update/delete/query capabilities. localStorageDB has no dependencies, and is not based on WebSQL. Underneath it all, the structured data is stored as serialized JSON in localStorage.
Data creating, manipulating, deleing, Querying etc. are very easy and its coding is pure JQuery.
Edit: if you prefer an SQL based solution, you can try HTML 5 Web SQL Database from here
Post a Comment for "Using Local Database W/ Jquery Mobile?"