Deployment of Sqlite together with . Net application

Asked

Viewed 115 times

2

I finished the C# app with Sqlite, but I saw that I need to send along with the Sqlite base and DLL. Which Sqlite DLL files need to attach and which folder do I have to play these files in?

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

1 answer

3


It depends on how you are using Sqlite. The most obvious is the System.Data.SQLite.DLL used by ADO.NET. If you use LINQ with it you will need the System.Data.SQLite.Linq.DLL also. You will also need the SQLite.Interop.DLL (which is the Sqlite).

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

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

  • Thanks bigown

Browser other questions tagged

You are not signed in. Login or sign up in order to post.