Re: [sqlite] Change in behavior between 1.0.79.0 and1.0.83.0 in System.Data.SQLite

2013-02-13 Thread Mason, Philip
om] Sent: Wednesday, January 23, 2013 12:33 PM To: General Discussion of SQLite Database Subject: Re: [sqlite] Change in behavior between 1.0.79.0 and1.0.83.0 in System.Data.SQLite Ok. So how does this get fixed? -- Michael Russell MTI Film, LLC michael.russ...@mtifilm.com http://www.

Re: [sqlite] Change in behavior between 1.0.79.0 and1.0.83.0 in System.Data.SQLite

2013-01-23 Thread Michael Russell
Ok. So how does this get fixed? -- Michael Russell MTI Film, LLC michael.russ...@mtifilm.com http://www.mtifilm.com/ Providence, RI 02906 USA +1 (401) 831-1315 On Thu, Jan 10, 2013 at 8:49 PM, Joe Mistachkin wrote: > > Michael Russell wrote: > > > > 1) The break seems to have happened between

Re: [sqlite] Change in behavior between 1.0.79.0 and1.0.83.0 in System.Data.SQLite

2013-01-10 Thread Joe Mistachkin
Michael Russell wrote: > > 1) The break seems to have happened between 1.0.81.0 and 1.0.82.0. > There was a change in System.Data.SQLite disposal behavior in that timeframe, namely using the new sqlite3_close_v2() API; however, everything [now] conforms to the IDisposable interface semantics and

Re: [sqlite] Change in behavior between 1.0.79.0 and1.0.83.0 in System.Data.SQLite

2013-01-10 Thread Michael Russell
Thanks Joe. A couple of follow-up items: 1) The break seems to have happened between 1.0.81.0 and 1.0.82.0. 2) Do Entity Framework team members read this list? -- Michael Russell MTI Film, LLC michael.russ...@mtifilm.com http://www.mtifilm.com/ Providence, RI 02906 USA +1 (401) 831-1315 On

Re: [sqlite] Change in behavior between 1.0.79.0 and1.0.83.0 in System.Data.SQLite

2013-01-10 Thread Joe Mistachkin
Michael Russell wrote: > > It's hard for me to tell that, but what I did was to use your > "testlinq.exe" program as follows: >0) Did "build.bat ReleaseNativeOnly x64" to generate SQLite.Interop.dll >1) Load SQLite.NET.2010.sln into VS2010. >2) Set build to "Debug / Mixed Platforms" >

Re: [sqlite] Change in behavior between 1.0.79.0 and1.0.83.0 in System.Data.SQLite

2013-01-10 Thread Michael Russell
Hello Joe, It's hard for me to tell that, but what I did was to use your "testlinq.exe" program as follows: 0) Did "build.bat ReleaseNativeOnly x64" to generate SQLite.Interop.dll 1) Load SQLite.NET.2010.sln into VS2010. 2) Set build to "Debug / Mixed Platforms" 3) Add Projects "S

Re: [sqlite] Change in behavior between 1.0.79.0 and1.0.83.0 in System.Data.SQLite

2013-01-09 Thread Joe Mistachkin
Michael Russell wrote: > > I did do a check-out after you made the above suggestion to me. I did the > fossil checkout / build, but I still have the same problem. > Is there any way you can determine which System.Data.SQLite objects are being held open by the Entity Framework? -- Joe Mistachkin

Re: [sqlite] Change in behavior between 1.0.79.0 and1.0.83.0 in System.Data.SQLite

2013-01-09 Thread Michael Russell
I did do a check-out after you made the above suggestion to me. I did the fossil checkout / build, but I still have the same problem. -- Michael Russell MTI Film, LLC michael.russ...@mtifilm.com http://www.mtifilm.com/ Providence, RI 02906 USA +1 (401) 831-1315 On Wed, Jan 9, 2013 at 2:54 PM, J

Re: [sqlite] Change in behavior between 1.0.79.0 and1.0.83.0 in System.Data.SQLite

2013-01-09 Thread Joe Mistachkin
Larry Brasfield wrote: > > I don't know about data adapter usage, but I am seeing the same behavior > with Entity Framework version 5. I have scrupulously disposed of > everything my code has gotten. I have also overridden the > DbContext.Dispose(bool disposing) method and can see that the b

Re: [sqlite] Change in behavior between 1.0.79.0 and1.0.83.0 in System.Data.SQLite

2013-01-09 Thread Larry Brasfield
Joe Mistachkin wrote: Does the Entity Framework make use of data adapters? If so, I just checked in a fix to dispose the internal commands managed by the SQLiteDataAdapter class (i.e. because the base class DbDataAdapter apparently does not explicitly dispose them). I don't know about data ada

Re: [sqlite] Change in behavior between 1.0.79.0 and1.0.83.0 in System.Data.SQLite

2013-01-09 Thread Joe Mistachkin
Does the Entity Framework make use of data adapters? If so, I just checked in a fix to dispose the internal commands managed by the SQLiteDataAdapter class (i.e. because the base class DbDataAdapter apparently does not explicitly dispose them). Could you please try the latest trunk code and let