in reply to Re^2: Where to put an application database?
in thread Where to put an application database?
A lot of databases handle the permissions issue by having a separate server process that actually does the database work, and all clients just submit requests to that process to get the work done.
SQLite, though, doesn't use a server process. Instead every client has a copy of the code to perform database updates. In that case, the file will need to be modifiable by everyone if you want them to be able to make any changes.
...roboticus
When your only tool is a hammer, all problems look like your thumb.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Where to put an application database?
by boftx (Deacon) on Oct 18, 2014 at 04:33 UTC | |
by erix (Prior) on Oct 18, 2014 at 05:43 UTC |