iOS 上 SQLite 或 Core Data 数据库的最大大小是多少?

发布于 2024-11-06 09:48:41 字数 79 浏览 0 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

似梦非梦 2024-11-13 09:48:41

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文