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?
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?