what is the good mechanism to store information among SQLite database and Shared Preferences ?

Why we use shared preference ? Why we use sqlite ? these questions made me confusing ? i tried much to find difference among them ? and better mechanism for data storing ? but i am't able to find the appropriate answer on google. Please help me ..with best examples and explanation.

link|improve this question

43% accept rate
It pretty much depends on kind of data you want to store. SharedPreferences allows a quicker and simpler access to data, it's more comfortable to use when keeping small amounts of data. – Egor Jun 8 '11 at 9:04
feedback

1 Answer

up vote 11 down vote accepted

It really depends on the data you want to store.

SQLite

Large amounts of same structured data should be stored in a SQLite database as databases are designed for this kind of data. As the data is structured and managed by the database, it can be queried to get a sub set of the data which matches certain criteria using a query language like SQL. This makes it possible to search in the data. Of course managing and searching large sets of data influences the performance so reading data from a database can be slower than reading data from SharedPreferences.

SharedPreferences

SharedPreferences is a key/value store where you can save a data under certain key. To read the data from the store you have to know the key of the data. This makes reading the data very easy. But as easy as it is to store a small amount of data as difficult it is to store and read large structured data as you need to define key for every single data, furthermore you cannot really search within the data except you have a certain concept for naming the keys.

link|improve this answer
1  
To give an example, SharedPreferences are useful for storing user preferences, where there are just a handful of variables that need storing. SQLite on the other hand would be better for storing data where there is a large set of items, such as song titles in a music library which need to be searched through. – Jodes Jun 8 '11 at 12:20
feedback

Your Answer

 
or
required, but never shown

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