How much can SQLite store on the iPhone?

后端 未结 12 2106
一整个雨季
一整个雨季 2020-12-10 15:44

I have an idea for a webapp for the iPhone but its unknown to me how much data can be stored in mobile Safari\'s SQLite db. I tried searching through the Apple docs but foun

12条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-10 16:21

    It's as the other posters say. You're only limited by the drive space on the device.

    You also need to consider your in memory footprint though. There is a finite amount of memory on the iphone, and in general it's quiet small, so the amount of data/hydrated objects you'll be able to have in memory is another potential limitation for your app.

提交回复
热议问题