Drago, William @ MWG - NARDAEAST wrote:
> 
> Is there a way to use the "System.Data.SQLite.dll" mixed-mode assembly
outside
> of the GAC? Or is there a 32 bit only single file version of SQLite?
>

Sure, you should be able to load the mixed-mode assembly from an arbitrary
location
using the LoadFrom() method, as seen here:

        http://msdn.microsoft.com/en-us/library/1009fa28%28v=vs.110%29.aspx

Alternatively, if the mixed-mode assembly is located in the same directory
as the
application binary itself, it may be possible to use the Load() method, as
seen here:

        http://msdn.microsoft.com/en-us/library/ky3942xh%28v=vs.110%29.aspx

--
Joe Mistachkin

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

Reply via email to