iOS Question sqlite - upload

Gijsen

Member
Licensed User
Longtime User
Is it possible to get the applications sqlite database and post it via http to a webserver ?
 

ilan

Expert
Licensed User
Longtime User
do you want to have a webserver using sqlite db and upload data from an ios app via http request?
if yes then sure it is possible.
 
Upvote 0

Gijsen

Member
Licensed User
Longtime User
No. In the app's sqlite database I store data for the app. For debugging purposes it would be great to have a copy of that database.
Basically the user registers actions, and those are uploaded to the server through json.
But sometimes these actions seem to be missing, and I'm not sure why.
If I can compare what I received via json calls to the server, and compare this to what I can see in the database it will become clear.

I guess it's a file stored somewhere that I can read and upload ?
 
Upvote 0

ilan

Expert
Licensed User
Longtime User
yes, when you initialize the sqlite db you set the destination file. you decide the name of the file and the destination. just upload that file to your webserver. if that is what you wanna do.
 
Upvote 0
Top