Quote:
Originally Posted by hanumandev
I have an sqlite table that has 3 image fields (thumb, med, large) for 500 records. where is the best place to store these images?
seems strange to put 1500 images (3 images for each record) in the resoures folder.
also, I don't want to store them on an external server because the user needs to be able to access the records w/ images if they don't have a network connection.
thanks in advance for any help.
|
Some of the basic tutorials say use BLOBs to store images; but from my background as a web developer says this is wrong because if the db gets corrupted or something you have no backup.
I would either put the images on the phone; or perhaps put the resources online and then use a JSON request to pull them in? But it does mean the user needs to be online to use the app.
Another alternative would be to use PAK the files up, but I do not know if this is possible, reasonable or not.