[sqlite] Multiple connections to in-memory db via .net
How can I create multiple connections to a shared SQLite in-memory database via .net? Thanks in advance.
[sqlite] Multiple connections to in-memory db via .net
Jarred Ford wrote: > > How can I create multiple connections to a shared SQLite in-memory > database via .net? Thanks in advance. > SQLiteConnection connection = new SQLiteConnection( "FullUri=file::memory:?cache=shared;"); -- Joe Mistachkin