How to perform bi-directional synchronization between Android SQLite and SQL Server

Hello, I want to know if there is a way to synchronize the SQLite database in Android with the SQL Server database on the main server in an automatic way.

I'm new to Android development, and in the past I used SQL Server replication with my Windows Mobile apps that provide me with many features like conflict detection and resolution. I want to know if there is something similar to SQL Server replication in Android or something like that.

Thank you for your help...

+4
source share
1 answer

No, this cannot be done easily. However, there is an alternative storage method, such as CouchDB , which provides automatic synchronization with several other databases.

0
source

Source: https://habr.com/ru/post/1382285/


All Articles