Matthijs ter Woord wrote:
> 
> I'm looking for a way to install System.Data.SQLite unattended, as part of
> the installation procedure of my product.
> How can this be achieved?
> 

Normally, there is nothing that requires installation on an end-user
machine.
Simply deploy the System.Data.SQLite managed and interop assemblies along
with
your application binaries.  The section that talks about the native library
pre-loading feature shows the "ideal" file deployment layout:

    * <bin>\YourApp.exe
    * <bin>\YourLib.dll
    * <bin>\System.Data.SQLite.dll (required, managed-only core assembly)
    * <bin>\System.Data.SQLite.Linq.dll (optional, managed-only LINQ
assembly)
    * <bin>\x86\SQLite.Interop.dll (required, x86 native interop assembly)
    * <bin>\x64\SQLite.Interop.dll (required, x64 native interop assembly)

For further information, see:

        
https://system.data.sqlite.org/index.html/doc/trunk/www/downloads.wiki

--
Joe Mistachkin

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

Reply via email to