Dave Edwards wrote:
>
> For Linux I have recompiled the managed only dll from the .081 source 
> using: build.bat ReleaseManagedOnly (so no need for the interlop.dll to 
> be placed in the root folder)
> And I have had to mod the built.bat so it runs:
>    %_AECHO% Forcing the use of the .NET Framework 2.0...
>    SET YEAR=2005
>    SET FRAMEWORKDIR=%windir%\Microsoft.NET\Framework\v2.0.50727
>    GOTO skip_netFxCheck
> 

Compiling the managed-only assembly for Mono requires some special
compilation options, as documented here:

https://system.data.sqlite.org/index.html/doc/trunk/www/build.wiki#mono

Basically, you'll just need to add the following line to your custom batch
file (prior to building):

SET MSBUILD_ARGS=/property:UseInteropDll=false
/property:UseSqliteStandard=true

>
> Another note; .isdisposed not in the sqlite.connection ? Testing for "is 
> nothing" does not pick up that it "is disposed but not nothing"
> 

Since a SQLiteConnection object is supposed to be used by only one thread,
there is normally no reason to test if the connection is disposed because
that thread should already know.

--
Joe Mistachkin

_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to