Maximum number of rows in a sqlite table

后端 未结 7 798
梦毁少年i
梦毁少年i 2020-12-10 00:30

Give an simple sqlite3 table (create table data (key PRIMARY KEY,value)) with key size of 256 bytes and value size of 4096 bytes, what is the limit (ignoring d

7条回答
  •  粉色の甜心
    2020-12-10 01:13

    No limits, but basically after a certain point the sqlite database will become useless. PostgreSQL is the top free database BY FAR for huge databases. In my case, it is about 1 million rows on my Linux 64-Bit Quad Core Dual Processor computer with 8GB RAM and Raptor hard disks. PostgreSQL is unbeatable, even by a tuned MySQL database. (Posted in 2011).

提交回复
热议问题