Hello,
I am trying to implement some kind of caching mechanism for complex data like images or xml files.
Since BLOB is not supported in Androids SQLite I have two options:
1)
ContentProviders
2)
Download and save the files to the file system. Writing the path of the file and some additional data
to a simple SQLite database using Strings and Longs etc.
I don't need to share data accross my application, so ContentProvider is not necessary. However I am not sure if its still a better idea to use ContentProvider because of performance or [give me your reason]

