On 11/13/15, A. Mannini <alessandro.mannini at esod.it> wrote: > Hi, > > i read SQLite FAQ and understood that use of SQLite on network share CAN > corrupts database file. > Fo me, it isn't clear if there is a way to safely use SQLite on a > network share in contests with few clients (max 5 for ex) and low read / > write concurrency.. >
If your network filesystem implements file locks correctly, then SQLite will work fine. Just be warned that there are many network filesystems that claim to implement locks correctly, and do most of the time, but sometimes mess up. -- D. Richard Hipp drh at sqlite.org