maximum size of a sqlite db per iphone app

不羁的心 提交于 2019-12-10 23:17:11

问题


Kindly get me the limits of following things in sqlite of iphone

  1. No of rows that can be created
  2. Maximum size of the database per app.

回答1:


There is no hard limit, except available Flash storage on the phone.

The number of rows is limited to 9,223,372,036,854,775,807 (because rowid is 64 bits wide), which is essentially unlimited...



来源:https://stackoverflow.com/questions/3080084/maximum-size-of-a-sqlite-db-per-iphone-app

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!