Re: [sqlite] Using in-memory DBs of the form: of 20) "file:memdb1?mode=memory=shared" (via Perl, DBD::SQLite & DBI)

2013-07-20 Thread Simon Slavin
On 20 Jul 2013, at 3:11pm, sqlite.20.browse...@xoxy.net wrote: > this in-memory database actually persists. Ie. Beyond the life of the program > that created it. Then it's not an in-memory database. Have you obeyed the requirements: version 3.7.7 or above,

Re: [sqlite] Using in-memory DBs of the form: of 20) "file:memdb1?mode=memory=shared" (via Perl, DBD::SQLite & DBI)

2013-07-20 Thread sqlite . 20 . browseruk
Niall, I'm using a dbname of 'file:memdb2?mode=memory=shared' in order to allow several threads to connect to the same in-memory DB (per docs at: http://www.sqlite.org/inmemorydb.html). This works great! (And works around a dumb limitation od DBI/iThreads.) The problem is that (despite the