I have an iPhone app that I plan to use for research purposes. Since testers use the application on my development phone, it stores analytics data in a local database (right now SQLite, but I do not mind switching to CoreData).
After testing is complete, I will need to copy this analytics database from the phone to my computer so that I can run data queries. What is the easiest way to do this? If necessary, I will iterate over the data, print it in the device log and then import it back into the database on the desktop, but I would like to find a way to just capture the .sqlite file without running it through an intermediate format.
source
share