I created sqlite db from core data and i want to repopulate it on the server side and download it again to device with overwriting existing sqlite db. Is it possible to repopulate on server side and is it work if overwrite with existing db?
Share
As far as i know, if you are saving data through core data, it will create usual sqlite db, but all tables, field names will has a Z_ prefix.
You can simply use this db on the server side, that download it as file and overwrite exiting db on device.
Sorry for my broken english if something wrong.