[sqlite] Multiple connections to in-memory db via .net

2016-03-10 Thread Jarred Ford
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

2016-03-09 Thread Joe Mistachkin
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