My data is simple property values so I could store either way, but I was wondering which is more reliable? Are shared preferences auto saved and therefore more reliable? Or because they are non-transactional is that less reliable?

link|improve this question

40% accept rate
feedback

1 Answer

The use of SharedPreferences or a ContentProvider/SQLite database is situation-based. In your situation, I would recommend using SharedPreferences. A SQLite database is meant for potential hundreds of entries. SQLite database can also be queried and the data retrieval is much more robust. The SQLite database adds immense power to your entries. But in your case, I would recommend using SharedPreferences, unless you have the unusual need to sort/filter through your property values. They are both reliable services, SharedPreferences are not autosaved, you must use commit() to save changes. The SQLite database is a lot more structured than SharedPreferences. For more information check out docs.

link|improve this answer
Great answer, thanks for clarifying some things! – ninetwozero Aug 14 '11 at 14:16
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.