Where is SQLite database stored on disk?

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

    There is no "standard place" for a sqlite database. The file's location is specified to the library, and may be in your home directory, in the invoking program's folder, or any other place.

    If it helps, sqlite databases are, by convention, named with a .db file extension.

提交回复
热议问题