I\'m using sqlite db in my app and now I would like to allow user customize the background image make them able to select one from their gallery.
Should I just store
SQLite has a cursor limit of 1Mb. So, you will probably not be able to store it completely in the DB, when you go to to request it will probably be truncated. Store the path to the image in the database table, and access it that way.