I have an android application with two databases. I need to synchronize them with two identical (same field structures and field names) databases on a web server. But first, I need to look into another database on the web server, extract some information from it and synchronize these two databases with some additional data from the first database. I’ve been working on an Android application for some time now, and I just learned enough PHP with MySQL to build a web application with basic CRUD.
I have a couple of questions:
How do I sync these databases on Android?
Can synchronization work in both directions? If I change the database data on Android, can I change it accordingly on the web server and vice versa?
I am working on a basic GUI for seniors to use an Android phone. My web application should add contacts and reminders to the databases in the Android application, but when I add a contact or reminder manually in my Android application, I want to also see them in my web application (in both directions).
Thank!:)
source
share