I want to copy my mssql database onto my phone so that I can access it with my hybrid app for android and I can work offline if net is unavailable.
What is the simplest way to do this? Is web sql the solution or should I look somewhere else?
I want to copy my mssql database onto my phone so that I can access it with my hybrid app for android and I can work offline if net is unavailable.
What is the simplest way to do this? Is web sql the solution or should I look somewhere else?
WebSQL
or LocalStorage
is a good choice to store data as both are supported by multiple mobile platforms.
As you have to copy from a MySQL DB then WebSQL would be the right choice. Though there are limitations in maximum size of the DB.
This Link might help you: What's the simplest way to import an SQLite SQL file into a WEB SQL Database