SQLite database limits in Android

后端 未结 3 1422
慢半拍i
慢半拍i 2021-02-20 14:03

I\'m planning Android app which extensively uses local DB. DB would contain approx 15 tables , properly normalized (FK, PK etc). 4 Main tables would have up to 1000 entries an

3条回答
  •  别跟我提以往
    2021-02-20 15:04

    I've provided an answer to a similar question here. There are details of soft limits and size limits for the table. As far as @Amokrane answer, you'll also need to be aware of limitations not imposed by SQLite, but by android. 50mb is the current maximum app size and there are issues with accessing large datasets on device. Take a look at that answer.

提交回复
热议问题