我正在使用 SQLite 和在后台运行的 php 应用程序。我已经使用 (Ctrl-c) 阻止了该应用程序,我只是注意到我有 database.sqlite 和 database.sqlite-journal。
目前,如何在不损害数据库的情况下删除 -journal 文件?
谢谢!
PS SQLite 版本 3.7.9
编辑:
-rw-r--r--. 1 damiano damiano 51M 8 mar 18.15 test.sqlite2
-rw-r--r--. 1 damiano damiano 2,6K 8 mar 18.15 test.sqlite2-journal
[damiano@localhost backup]$ sqlite3 test.sqlite2
SQLite version 3.7.13 2012-06-11 02:05:22
Enter ".help" for instructions
Enter SQL statements terminated with a ";"
sqlite>
[damiano@localhost backup]$ ls -lh
-rw-r--r--. 1 damiano damiano 51M 8 mar 18.15 test.sqlite2
-rw-r--r--. 1 damiano damiano 2,6K 8 mar 18.15 test.sqlite2-journal
[damiano@localhost backup]$