Kaic_supra
Kaic_supra

Reputation: 133

How to save image in sqlite database

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

Answers (1)

Scheintod
Scheintod

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

Related Questions