So I have made a web app in (PHP/MySQL). I want to basically convert that app to iPad/Droid tablets.
It looks like LiveCode will do almost everything I need to make this happen. One huge question that is a deal breaker is...
Is it possible in LiveCode to sync databases?
Meaning if the user of an iPad/Droid doesn't have internet connection, information is stored locally. Then as soon as an internet connection is detected it dumps all data saved "offline" to an online MySQL database.
Thanks in advance!
Jer
New to LiveCode but not to code.
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
Re: New to LiveCode but not to code.
You would store it locally in your app's Document folder in to a SQLite database (or just use an external stack).. Once you have a connection back to the external database, you would need to manually go through what is in the local database and send it to the external database (and then empty out the local database for the next time)..