Where is SQLite database stored on disk?

后端 未结 7 836
无人及你
无人及你 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:44

    If you are running Rails (its the default db in Rails) check the {RAILS_ROOT}/config/database.yml file and you will see something like:

    database: db/development.sqlite3
    

    This means that it will be in the {RAILS_ROOT}/db directory.

提交回复
热议问题