Possible Duplicate:
Core Data vs SQLite 3
I have been using SQLite for saving data in my iOS application (for a table with over 20,000 rows max). However, I've encountered a problem with SQLite, where, when I try to use a SELECT
statement while I insert data to the table, the SELECT
statement won't work.
Would something like this work in Core Data? Can I retrieve data from the database at the same time as I insert new data into it?