Where is SQLite database stored on disk?

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

    When you call sqlite3_open() you specify the filepath the database is opened from/saved to, if it is not an absolute path it is specified relative to your current working directory.

提交回复
热议问题