Has there been any discussion about integrating sqlite with Apple's iCloud, either by using Apple's Core Data as the Virtual Machine's database engine (so the VM would operate on Core Data objects) or by otherwise modifying the existing backend?
My motivation is to allow existing apps that using the SQL language (via FMDB or the sqlite API) to gain Core Data features such as iCloud integration for syncing data between devices. Refactoring apps to use Core Data is often impractical. My dream architecture is: SQL Language <--> FMDB <--> CD_sqlite (using Core Data (sqlite)) <--> iCloud. What is the feasibility of making sqlite a wrapper for Core Data, or integrating iCloud directly into sqlite? Crazy? Jeff