Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

arnieterm

macrumors regular
Original poster
Aug 28, 2008
201
0
I have reviewed CoreDataBooks sample that is using Core Data [an object oriented approach] and SQLite for iphone. I have an app that is also using SQLite database and requires a large number of data entry usually on a daily basis. I have 4 tables out of which 2 are main and holding one to many relationship as given below:

Table1 [Main table that wil contain one row for each day of month]
Table2 [That may contain one or more row for each row of Table1]

Each row of Table1 is uniquely identified by the date for that day. I am storing date as double in the table. Is it okay to use Core Data with sqlite here. Will it make reading/writing data faster than when using only sqlite3.
As I have to plot a graph also based on data for all days of a particular month.

Can anybody suggest that should I use Core Data along with sqlite or only sqlite as usual?
 
I think you would have to choose one or the other. Core Data uses a sqlite database but you don't directly use sqlite methods like you are doing currently. I don't think you can port your current database to Core Data. When you do the mapping it creates the sqlite database with other fields than what you are mapping to.
 
I have reviewed CoreDataBooks sample that is using Core Data [an object oriented approach] and SQLite for iphone. I have an app that is also using SQLite database and requires a large number of data entry usually on a daily basis. I have 4 tables out of which 2 are main and holding one to many relationship as given below:

Table1 [Main table that wil contain one row for each day of month]
Table2 [That may contain one or more row for each row of Table1]

Each row of Table1 is uniquely identified by the date for that day. I am storing date as double in the table. Is it okay to use Core Data with sqlite here. Will it make reading/writing data faster than when using only sqlite3.
As I have to plot a graph also based on data for all days of a particular month.

Can anybody suggest that should I use Core Data along with sqlite or only sqlite as usual?

As AndyCodez said, you use either CoreData or SQLite. CoreData is using SQLite under the hood to handle the object persistence, but you don't write any of that SQLite, nor do you ether see it.

For what you are doing, ether is fine. CoreData makes it simpler though.
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.