开发者

Should i store images in SQLite database?

开发者 https://www.devze.com 2023-01-16 23:46 出处:网络
I need to store 100 images and sounds files in SQLite. Is it possible to store this data? How man开发者_开发知识库y MB of data can be stored in SQLite?

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

How man开发者_开发知识库y MB of data can be stored in SQLite?

Regards

Aswan


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.


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

0

精彩评论

暂无评论...
验证码 换一张
取 消