I am coming from a novice database programmer background, mainly using MS Access for simple database applications with forms. I am in process of migrating to Xcode and need some assistance in how to populate and update my datasource which I planned to use one big array for.

I have all my raw data from sqlite loaded into Objects: Category, Subject, Quote, Quote_Map

Category
--------- 
category_id 
category_name

subject
--------
subject_id
subject_name
category_name

quote
--------
quote_id
quote_excerpt

quote_map
----------
quote_map_id
quote_id
subject_id

I have objects for each of these tables now. Now I want to make a master data source object that has all the the following:

category_data
----------
category_title
subjects (array)

then within the category_subjects array I want:

subjects
----------
subject_id
subject_title
category_title
quotes (array)

The quotes are obviously just those that map to subjects from the quote_map table.

Before I get totally down a wrong direction I wanted to ask for some guidance on what the best way to go about this task is.

I am trying to end up with one data source that I can use for a drill down app with four views, category, then the subjects of that category, then the quotes of that subject, then the specific quote selected.

Any direction would be greatly appreciated.

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

Best direction to go is to build your data engine based on CoreData. Spend 2-4 hours, build simple test project, get experience for lifetime.

link|improve this answer
yeah i know its probably the best way to go, but I have almost a thousand entries in this sqlite database and don't see an easy way to load the data into a CoreData compliant format... – jroyce Jan 20 at 20:54
If you do have thousand entries already, CoreData is the only way to go really. Simply because thousand NSArrays will just kill the performance. – Kyr Dunenkoff Jan 20 at 21:07
Is there any direction on how to do this without going into CoreData right now? – jroyce Jan 20 at 21:53
Use NSDictionary, this way you can store all data structure for single record in single object and access fields and data by keys. Don't forget, if you're going to change the data in objects during runtime, you'll need to use NSMutableDictionary. – Kyr Dunenkoff Jan 21 at 10:10
Thanks I'll check this out. – jroyce Jan 21 at 18:39
feedback

Your Answer

 
or
required, but never shown

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