SQLite Forum

What does, if many threads and/or processes need to write the database at the same instant, mean?
Login
You will not be able to do that without altering the SQLite3 code. However, if you can settle for building something which behaves as if you had done that, you can create a shim DLL which mostly just passes some/most calls through to a "real" SQLite3 DLL but does something different some select calls, such as the wrapping suggested elsewhere in this thread.