In SQlite, you can perform all the functions related to SQL, such as create, delete..and also store a large amount of data. But in Plist you will find it jst store.
Plist and SQLite have various uses, as shown below.
PList is a file format used to store a small amount of structural data (less than a few hundred kilobytes), usually a dictionary. PList does not have the ability to sort by itself, although the code can be easily written to sort it. The property list is probably the easiest to maintain, but it will be loaded into memory right away. This can lead to a large amount of device memory.
SQLite is a complete database. The file size (on iphone) is essentially unlimited. Embedded sorting capabilities. Queries and relational tables are possible. Performance should be as good as any sorting algorithm you could come up with. The sqlite database, on the other hand, only downloads the data you request. I'm not sure how your data is structured, but you could easily create key-value pairs with a single database table. (One table with a key column and a column of values). Then, if it were me, I would write an Objective-C class to wrap database queries so that I can write simple instructions, for example:
NSString *welcomeText = [[MyData sharedData] dataWithKey:@"WelcomeText"];
Obtaining data in a database in the first place should not be difficult. You can use the sqlite3 command line utility to bulk upload your data. There is a team called .import that will import your data from a text file.
source share