user8466504
user8466504

Reputation: 69

Adding System.Data.SQLite reference in C#

Hi I have added the sqlite dll's to my project in a folder but when I add the using statement it does not pick it up and if I try to add a new reference, there is no option for sqlite. Is there something else i should do after adding the dll's?

Upvotes: 0

Views: 5104

Answers (1)

Christoph Fink
Christoph Fink

Reputation: 23103

There should be a Browse button in the Add references-dialog, where you can select the SQLite.dll, but I would recommend using NuGet: https://www.nuget.org/packages/System.Data.SQLite/

Upvotes: 2

Related Questions