Reputation: 133
Well, I was wondering if it is possible and what the best method for saving images in database android (sqlite). I read something about BLOB, but did not quite understand. Can anyone help me?
Upvotes: 0
Views: 207
Reputation: 8105
You can, but you shouldn't.
Theoretically everything can be stored in a DB. But not everything is ideally stored in a database.
See it the other way: There is an old and long tested Database which is build and optimized for storing images: It's called "Filesystem".
Upvotes: 2