Re: [sqlite] Attach Database and Database pooling

2016-05-26 Thread Michael Hari
Never mind, there was an error in my code. On 5/26/16, 11:52 AM, "sqlite-users-boun...@mailinglists.sqlite.org on behalf of Michael Hari" wrote: >Hi All, > > > >I’m trying to preallocate about 20 sqlite connections each with the same >“ATTACH DB” command. I’m getting “database x already in

[sqlite] Attach Database and Database pooling

2016-05-26 Thread Michael Hari
Hi All, I’m trying to preallocate about 20 sqlite connections each with the same “ATTACH DB” command. I’m getting “database x already in use” errors. Is this not possible to do? Can each independent X connection not have the same attached DB command? If not, what’s the preferred approach? Than