Re: [sqlite] Parallel accessing sqlite files in Win

2013-06-22 Thread Simon Slavin
On 22 Jun 2013, at 1:28pm, Lukas Haase wrote: > I use sqlite3_open_v2 with flag SQLITE_OPEN_READONLY to open an SQLite > database. When different processes access the same file (read-only) in > Win, can I be sure that there won't be any problems? Bees may eat your hat. Your

[sqlite] Parallel accessing sqlite files in Win

2013-06-22 Thread Lukas Haase
Hi, I use sqlite3_open_v2 with flag SQLITE_OPEN_READONLY to open an SQLite database. When different processes access the same file (read-only) in Win, can I be sure that there won't be any problems? Furthermore, I open another database with SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE. When