简体   繁体   中英

What is the maximum size of SQLite or Core Data database on iOS?

iOS上SQLite或Core Data数据库的最大大小是多少,可以在iOS上的sqlite / Core Data数据库中添加多少行?

The max size of your SQLite database is only limited by free disk space.

The number of rows in one SQLite database is defined by the ROWID type that is a signed 64 bit value. In a worst case scenario where one managed object needs say 100 rows in the database to specify all many-to-many relations there would still be no limit except available disk space.

Short answer to both: only limited by free disk space on the users device.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM