tags:

views:

24

answers:

1

How much data can we store in Core Data? On which parameter does it depends?

A: 

I did some searching around and couldn't find a hard answer for you to link to. However, Core Data is built on top of Sqlite3 so it should have the same limits. Essentially you should be able to keep storing data until you hit the SQLITE_MAX_PAGE_COUNT limit.

Here is a link to the Sqlite3 implementation limits page, which should answer your question: http://www.sqlite.org/limits.html

einsteinx2