I'm considering building an HTML5 app that would require downloading a sqlite database from a server and then accessing that database locally for referencing the data while offline.
Is it possible to download a pre-populated sqlite database and access it locally with HTML5? I haven't been able to find any examples or tutorial on this.
My current thought would be to build the site so that it can all be run while offline via the manifest cache files (so far no problem), BUT it also needs to have access to a pre-populated sqlite database downloaded from a server and that is the part I'm not sure how to handle.
When online, the HTML5 app would need to have the ability to check the server for updates, rebuild the manifest cache and update the database again...
Any advice, tips, etc would be much appreciated. Thanks!