Store multiple XML files in Android
- by Federico Perez
I am developing a survey android app so that:
Each survey is downloaded from server as XML file.
A survey can have multiple versions (new survey, new XML).
When a new XML is downloaded it should overwrite its corresponding
previous XML.
I would like to store the files in a sqlite database. How can I insert my files into the db?
Should I use BLOB or store the content of the XML as string? In any case how should I do it?