SQLite database maximum storage capacity

前端 未结 2 684
星月不相逢
星月不相逢 2021-02-13 03:37

How many records in an SQLite database can we maximally store? Is there any limitation? If the data goes beyond this limitation what type of error does it give? Will the whole t

2条回答
  •  攒了一身酷
    2021-02-13 03:57

    Its 140 terabytes Maximum . In more details

    SQLite was originally designed with a policy of avoiding arbitrary limits. Of course, every program that runs on a machine with finite memory and disk space has limits of some kind. But in SQLite, those limits were not well defined. The policy was that if it would fit in memory and you could count it with a 32-bit integer, then it should work.

提交回复
热议问题