Re: [sqlite] How to connect to an in-memory, shared cache db via SQLiteConnection

2012-08-17 Thread Wayne Bradney
Ah, there you go. I'd assumed the latest nuget package would have this already. Thanks. > From: kevin.m.ben...@gmail.com > Date: Fri, 17 Aug 2012 22:54:58 -0400 > To: sqlite-users@sqlite.org > Subject: Re: [sqlite] How to connect to an in-memory, shared cache db via > SQLi

Re: [sqlite] How to connect to an in-memory, shared cache db via SQLiteConnection

2012-08-17 Thread Kevin Benson
On Fri, Aug 17, 2012 at 8:51 PM, Wayne Bradney wrote: > > > > I'm using System.Data.SQLite version 1.0.81.0, and I'm trying the > following connection string: FullUri='file::memory:?cache=shared; when I > Open() the SQLiteConnection, I get: Invalid ConnectionString format for > parameter "FullUri"

Re: [sqlite] How to connect to an in-memory, shared cache db via SQLiteConnection

2012-08-17 Thread Udon Shaun
try! > From: slav...@bigfraud.org > Date: Sat, 18 Aug 2012 02:15:13 +0100 > To: sqlite-users@sqlite.org > Subject: Re: [sqlite] How to connect to an in-memory,    shared cache db via > SQLiteConnection > > > On 18 Aug 2012, at 1:51am, Wayne Bradney wrote: > > >

Re: [sqlite] How to connect to an in-memory, shared cache db via SQLiteConnection

2012-08-17 Thread Wayne Bradney
ng connectionString = @"Data Source=:memory:?cache=shared"; gives: Invalid ConnectionString format for parameter "Data Source" I just can't seem to get a shared cache, in-memory db no matter what I try! > From: slav...@bigfraud.org > Date: Sat, 18 Aug 2012 02:15:13 +0

Re: [sqlite] How to connect to an in-memory, shared cache db via SQLiteConnection

2012-08-17 Thread Simon Slavin
On 18 Aug 2012, at 1:51am, Wayne Bradney wrote: > I'm using System.Data.SQLite version 1.0.81.0, and I'm trying the following > connection string: FullUri='file::memory:?cache=shared; when I Open() the > SQLiteConnection, I get: Invalid ConnectionString format for parameter > "FullUri" What