Multiple files for a single SQLite database

后端 未结 3 1875
情书的邮戳
情书的邮戳 2021-01-01 13:05

Afaik, SQLite stores a single database in a single file. Since this would decrease the performance when working with large databases, is it possible to explicitly tell SQLit

3条回答
  •  梦谈多话
    2021-01-01 13:35

    If you don't need a join between these tables you can manually split the DB and say which tables are in which DB (=file).

    I don't think that it's possible to let SQLite split your DB in multiple files, because you connect to a DB by telling the filename.

提交回复
热议问题