Pros and Cons of Saving an Image in SQLite

Now I am in a dilemma about whether to create a separate folder for byte [] images instead of using SQLite or to save Blob images in SQLite ?.

What are the pros and cons of saving bytes [] of images in SQLite ?.

+3
source share
1 answer

I am sure that the best practice is to save the URI as text in SQLite and save all the images in internal / external storage. Many blob can start to slow down performance.

+4
source

All Articles