Replies: 1 comment 2 replies
-
|
SQLite is not recommended to be used over network. It's a known issue. You will always encounter some kind of problems eventually and it's not SQLiteStudio bug - it's nature of SQLite: https://sqlite.org/useovernet.html If you need network database, you should go for client-server solution, like PostgreSQL. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
I have sqlite3 db on server with a script. The script insert & updates some rows, and from ssh via sqlite3 command I can
selectand see those new & changed record (basicselect * from ...).In SQLiteStudio I have the db connected via samba share (e.g.:
\\192.168.1.255\var\www\db\thedb.db3- db file isRWfor both: the samba user & the script).The problem is:☹️ , unless I click "Disconnect" and "Connect" and execute the query again, then I can see those changes made by script.
When I run the same query (
select * from ...) in SQLiteStudio I do not see those new/changed recordsIt seems to be some kind of cache - is there a option to disable this cache in SQLiteStudio? Because constantly clicking Connect-Disconnect is not a solution 😑
Beta Was this translation helpful? Give feedback.
All reactions