SqLite vs. MySQL vs. shared_preferences
shared_preferences : 앱 내에서 저장할 수 있음. (ex. 보통 사용자 설정 값 저장할 때 사용됨.) 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 lang..