tags:

views:

42

answers:

2

Hi folks,

i need to store 100 images and sounds files in sql lite.is it possible to store this data

how much mb of data available in sql lite

Regards

Aswan

+1  A: 

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

Thomas Mueller
+2  A: 

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.

Chiggins
rather than sd card if you have any example pl help me
Aswan