CoreData or SQLite3 question
Hello everyone, I need a little help figuring out what storage to use in my application. I have a long list of names (more than 32,000), an ID number for each name, and a parent ID number for each name. My App will need to select data based on the parent id (such as "select * where parentID = ?).
Should I be using SQLite for this, or something else? The data will never be modified and only gets selected very seldom (3 or 4 times per App launch).
|