iOS 上 SQLite 或 Core Data 数据库的最大大小是多少?
iOS 上 SQLite 或 Core Data 数据库的最大大小是多少?iOS 上的 sqlite/Core Data 数据库可以添加多少行?
What is the maximum size of SQLite or Core Data database on iOS, how many rows can be added to a sqlite/Core Data database on iOS?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
SQLite 数据库的最大大小仅受可用磁盘空间的限制。
一个 SQLite 数据库中的行数由 ROWID 类型定义,该类型是一个带符号的 64 位值。在最坏的情况下,一个托管对象需要数据库中的 100 行来指定所有多对多关系,除了可用磁盘空间之外,仍然没有任何限制。
对两者的简短回答:仅受用户设备上的可用磁盘空间限制。
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.