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 > S

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

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

2012-08-17 Thread Udon Shaun
Sent: Saturday, August 18, 2012 2:51 AM Subject: Re: [sqlite] How to connect to an in-memory, shared cache db via SQLiteConnection Sorry, I'd already removed the quote - still doesn't work. Here's what I've tried:            const string connectionString = @"FullUri=file::memory:&q

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

2012-08-17 Thread Wayne Bradney
uot;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 +0100 > To: sqlite-users@sqli

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

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

2012-08-17 Thread Wayne Bradney
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 am I doing wrong?