Re: [sqlite] How do I get older versions of the sources?

2013-03-27 Thread Wayne Bradney
e. Thanks From: Stephan Beal <sgb...@googlemail.com> To: General Discussion of SQLite Database <sqlite-users@sqlite.org> Sent: Wednesday, March 27, 2013 10:18 AM Subject: Re: [sqlite] How do I get older versions of the sources? On Wed, Mar 27, 2013 at 3:15 PM, Wayne Bradney &l

[sqlite] How do I get older versions of the sources?

2013-03-27 Thread Wayne Bradney
Might seem like a dumb questions, but I can figure it out.fossil clone command gives me: Not authorized to cloneHitting the URL in the browser gives me much info about cryptic tag ids but no apparent way to get to full sources for an older version. Help?

Re: [sqlite] Concurrent read performance

2013-01-14 Thread Wayne Bradney
qlite.org > Subject: Re: [sqlite] Concurrent read performance > > Wayne Bradney wrote: > >>> All access in SQLite is serialized. Apologies if I'm missing something > >>> fundamental here, but that's not what I'm seeing with a file-backed > >>> databa

Re: [sqlite] Concurrent read performance

2013-01-12 Thread Wayne Bradney
t html e-mail > /\ www.asciiribbon.org > > > > -Original Message- > > From: sqlite-users-boun...@sqlite.org [mailto:sqlite-users- > > boun...@sqlite.org] On Behalf Of Wayne Bradney > > Sent: Saturday, 12 January, 2013 12:36 > > To: General Discussion of SQLite

Re: [sqlite] Concurrent read performance

2013-01-12 Thread Wayne Bradney
Re: [sqlite] Concurrent read performance > > Also...does increasing cache_size help? > Are you able to use a RAM disk? > > > -Original Message- > From: sqlite-users-boun...@sqlite.org > [mailto:sqlite-users-boun...@sqlite.org] On Behalf Of Wayne Bradney > Se

Re: [sqlite] Concurrent read performance

2013-01-12 Thread Wayne Bradney
but were surprised by the apparent lack of read-concurrency, and wanted to get some input on what our options might be in terms of SQLite configuration of memory-backed databases. > From: slav...@bigfraud.org > Date: Sat, 12 Jan 2013 17:48:56 + > To: sqlite-users@sqlite.org > Su

Re: [sqlite] Concurrent read performance

2013-01-12 Thread Wayne Bradney
2.1 > http://www.sqlite.org/sharedcache.html > > PRAGMA read_uncommitted = ; > > > -Original Message- > From: sqlite-users-boun...@sqlite.org > [mailto:sqlite-users-boun...@sqlite.org] On Behalf Of Wayne Bradney > Sent: Saturday, January 12, 2013 11:39 AM > To: sq

[sqlite] Concurrent read performance

2013-01-12 Thread Wayne Bradney
I have a requirement for which I'm proposing SQLite as a solution, and would appreciate some feedback to clarify my thinking. The application is a shared service (.NET/WCF) that caches relational data in-memory and serves it up when (read-only) requests come in (via operation contracts) from

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

2012-08-17 Thread Wayne Bradney
QLiteConnection > > On Fri, Aug 17, 2012 at 8:51 PM, Wayne Bradney <wayne_brad...@yahoo.com>wrote: > > > > > > > > > I'm using System.Data.SQLite version 1.0.81.0, and I'm trying the > > following connection string: FullUri='file::memory:?cache=sh

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

2012-08-17 Thread Wayne Bradney
te.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 <wayne_brad...@yahoo.com> wrote: > > > I'm using System.Data.SQLite version 1.0.81.0, and I'm trying the following &

[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?