I am developing an app for iOS that uses SQLite3 database now i want to save some images in it, i have searched on net that people tells that it is not good idea to save images in SQLite3 like this one
I am totally confuse that what to do so i am painting my whole situation in front of you please advice me what to do
i want to store 79 images in my SQLite database most of them are 2kb in size and very few are 20 to 25 kb totally all the images takes 384kb on disk so is it advisable to store all the images in my database or only use links in my database and filesystem for images
Please advise me as soon as possible
In my opinion Save imagePath in SQLite, and save image in your document directory. I do the same. May be this help you.