Should i store images in SQLite database?

前端 未结 2 467
遇见更好的自我
遇见更好的自我 2021-01-23 18:36

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

2条回答
  •  面向向阳花
    2021-01-23 19:16

    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.

提交回复
热议问题