I made a database using phonegap[cordova 1.7.0] sqlite on IOS5. But I now want to switch this database with one that I already have on an online server. Is there some method to do that ?
Thanks a lot.
|
|
If I understood correctly you want to use your current logic for handling database access to connect to remote sqlite database. I think such use case is not possible out of the box. Cordova is using support for WebSQL built into iOS and Android (or provides own compatible implementation). There are at least 2 solutions to your problem:
|
|||
|
|
|
There's an sqlite plugin for Phonegap. If the online sqlite is (semi-)publicly available/downloadable, you could have the Phonegap download the db file (there's a Download plugin, I think), and have your customized sqlite plugin use this db. |
|||||
|
|
Either you can also do it in this way. Create a XML file dbase on server and parse it then you can make changes to your existing database by reading the xml files contents. |
|||||
|