SQLite deployment along with .Net application

2

I finished the C # app with SQLite, but I saw that I need to send it along with the base and the SQLite DLL. What SQLite DLL files do I need to append and what folder do I have to play these files?

The installation of the program will be done on a local computer using XP.

    
asked by anonymous 20.08.2015 / 15:19

1 answer

3

Depends on how you are using SQLite. The most obvious is System.Data.SQLite.DLL used by ADO.Net. If you use LINQ with it, you'll need System.Data.SQLite.Linq.DLL too. You'll also need the SQLite.Interop.DLL (which is SQLite).

It's good to test on a clean machine to see if everything is okay. Make sure all settings are ok.

Of course if you already have a database for it to use, this file should be included together.

    
20.08.2015 / 15:31