My application creates a in-memory database (:memory:) using sqlite as a back end.
I want my master thread to create a connection to a in-memory database and this connection to be shared by multiple threads. Is this possible? SQLite 3.7.8 is available for download right now.
Is the shared cached a possible way to go?
:memory:creates an independent DB in memory... see sqlite.org/inmemorydb.html