SSH Tunnelling
#4944
Replies: 1 comment 4 replies
-
SQLite should not be used over any kind of network. It's not designed to work this way and any attempts to do it usually lead to transaction errors or data corruption. Some people use SQLite over NFS or Samba (Windows shared folders), but sooner or later they encounter unexpected and unexplained errors - this is because SQLite is designed and implemented to work locally. It's embedded database. Since SQLite doesn't support and doesn't recommend it (https://www.sqlite.org/useovernet.html), so does the SQLiteStudio. |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Appreciate your development effort. Any possibility to connect to a sqlite file that is accessible through an ssh tunnel remotely?
Beta Was this translation helpful? Give feedback.
All reactions