Android Question Db Replica from andoid device to mysql server

Antonio Sabatini

New Member
Licensed User
Longtime User
Hi i ask to you if someone know how i can have a replica of data with a local database (android device) and a remote server (mysql on internet), so for example:
User make some actions on db running on Android every 30 min. it connect with the remote db and the two databases update each other. There is a way to do?

Thanks in advance.
 

Antonio Sabatini

New Member
Licensed User
Longtime User
See the "Similar threads" section above. There are several ways to connect to remote databases. You will need to implement the synchronization yourself.

You can add a date column to your tables and then send all the records that are more recent than the last sync time.

Thank you for the reply.
 
Upvote 0
Top