Splitting sqlite files for syncing
问题 I am writing an Android app that collects data from sensors and stores it in a local SQLite database. What I'd like to do is sync this data (read: upload) with a backend application (I am using Android's Sync Adapter for this). Since the data can be acquired during the sync process, I think it is reasonable to set the maximum size for the sqlite file to say 700 Kb (doesn't really matter), so the sync adapter will synchronise those 700 Kb files (via POST request) excluding the active one. And