Is there a way to transfer data from the underlying data to an online database?

My application is currently using master data. I created a new version of the application, which is based on the cloud, and the database is online. Therefore, user access / accounts are required to access the data. The easiest way is to make it a separate application, but then I will lose the user base that I already have.

Is there a way to transfer data from the iPhone master data database to an online database? I am using https://www.parse.com/

+6
source share
2 answers

Take a look at this github project,

https://github.com/itsniper/FTASync

+3
source

Of course. To transfer data from CoreData to Parse, simply create a PFObject for each row in the CoreData table and save it in Parse. You can use saveAll to be faster. Then you no longer need the local copy in CoreData, so you can delete it.

+1
source

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


All Articles