Re: [Firebird-net-provider] FbEmbed Not Releasing Database

2014-06-30 Thread Scott Morgan
On 27/06/14 17:27, Mark Rotteveel wrote: > On 27-6-2014 18:09, Scott Morgan wrote: >> Trying to drop a DB opened with the embedded system, but something seems >> to be holding the file open after the connection is closed. > > The .net provider has a connection pool, so the physical connection is

Re: [Firebird-net-provider] FbEmbed Not Releasing Database

2014-06-27 Thread Mark Rotteveel
On 27-6-2014 18:09, Scott Morgan wrote: > Trying to drop a DB opened with the embedded system, but something seems > to be holding the file open after the connection is closed. > > Test case from a console app: > > Console.WriteLine("Attempting to open DB..."); > var conn = new FbConnection(); > co

[Firebird-net-provider] FbEmbed Not Releasing Database

2014-06-27 Thread Scott Morgan
Trying to drop a DB opened with the embedded system, but something seems to be holding the file open after the connection is closed. Test case from a console app: Console.WriteLine("Attempting to open DB..."); var conn = new FbConnection(); conn.ConnectionString = myConnectionString; conn.Open();