Where is SQLite database stored on disk?

后端 未结 7 844
无人及你
无人及你 2021-01-31 14:02

Where is the SQLite database stored i.e. directory path on windows 7 when created ?

7条回答
  •  佛祖请我去吃肉
    2021-01-31 14:47

    .databases

    If you run this command inside SQLite

    .databases
    

    it lists the path of all currently connected databases. Sample output:

    seq  name             file                                                      
    ---  ---------------  ----------------------------------------------------------
    0    main             /home/me/a.db
    

提交回复
热议问题