SQLite for large data sets?

前端 未结 5 642
离开以前
离开以前 2020-12-03 10:31

I have a reasonably large data set and would like to store it in a file rather than a RDBMS.

The main table in the data set is just over 1M rows, 30 columns and abou

5条回答
  •  清歌不尽
    2020-12-03 11:13

    SQLite will handle that file just fine; make sure to import the records in a transaction so that it doesn't spend a lot of time creating indexes until everything is imported.

提交回复
热议问题