We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug Disconnecting a sqlite connection does not truly close it
To Reproduce Steps to reproduce the behavior:
sqlite3 /tmp/foo.db "PRAGMA journal_mode=wal; CREATE TABLE IF NOT EXISTS foo (bar INT);"
wal
foo.db-shm
foo.db-wal
Expected behavior The connection to sqlite database is supposed to be fully closed when disconnecting from the database
Screenshots If applicable, add screenshots to help explain your problem.
Application (please complete the following information):
3.40.1
0.7.16
deb
Additional context Untested with any other connection to other database, only sqlite.
The text was updated successfully, but these errors were encountered:
Thanks for the report, you will find the fix in the next release.
Sorry, something went wrong.
757a2b3
Fabio286
No branches or pull requests
Describe the bug
Disconnecting a sqlite connection does not truly close it
To Reproduce
Steps to reproduce the behavior:
sqlite3 /tmp/foo.db "PRAGMA journal_mode=wal; CREATE TABLE IF NOT EXISTS foo (bar INT);"
wal
mode, new files will appear, likefoo.db-shm
andfoo.db-wal
, which will serve as evidencefoo.db-shm
andfoo.db-wal
are still present, preventing any other app to perform some low level operationExpected behavior
The connection to sqlite database is supposed to be fully closed when disconnecting from the database
Screenshots
If applicable, add screenshots to help explain your problem.
Application (please complete the following information):
3.40.1
(provided by debian packages)0.7.16
, viadeb
on Debian 12.1 amd64Additional context
Untested with any other connection to other database, only sqlite.
The text was updated successfully, but these errors were encountered: