android sqlite 双向同步sqlite
我需要将我的 Android SQLite 数据库与我的云服务器数据库同步,并在多用户环境中以双向方式进行同步.
I need to sync my Android SQLite DB with my cloud-server DB, and doing it in a bi-directional way in a multiuser environment.
我找到并介绍了解决方案 此处 但我想了解更好的解决方案/算法.
I have found and introduction to the solution here but I would like to read about a better solution/algorithm.
您可以使用 Oracle 数据库作为您的服务器端数据库吗?
Can you use Oracle Database as your server-side DB?
如果是这样,您应该考虑使用 Oracle Database Lite,它包括与 SQLite 和 Android 兼容的完整同步解决方案,并且专为多用户环境而设计.
If so, you should consider Oracle Database Lite, which includes a full synchronization solution that is compatible with SQLite and Android, and was designed for multi-user environments.
它支持自动同步、高级冲突解决和多种同步模型.它还支持从中央管理控制台部署和管理应用,甚至设备管理.
It supports automatic synchronization, advanced conflict resolution, and multiple sync models. It also supports deploying and managing apps from a central management console, and even device management.
您可以在此处阅读更多相关信息:http://www.oracle.com/technetwork/database/database-lite/overview/index.html
You can read more about it here: http://www.oracle.com/technetwork/database/database-lite/overview/index.html
此外,您可以点击下载标签亲自试用.
Also, you can click on the download tab to try it out for yourself.
埃里克