Aswan
Aswan

Reputation: 5135

Should i store images in SQLite database?

I need to store 100 images and sounds files in SQLite. Is it possible to store this data?

How many MB of data can be stored in SQLite?

Regards

Aswan

Upvotes: 1

Views: 1546

Answers (2)

Chiggins
Chiggins

Reputation: 8397

It would be best to store the files in the filesystem or memory card, then reference to them in the SQLite database, with columns such as _id and fileLocation.

Upvotes: 5

Thomas Mueller
Thomas Mueller

Reputation: 50087

I would store the files as - well - files. If you store them in SQLite then they need to fit in memory.

Upvotes: 2

Related Questions