1

I installed SQL Lite in a Test Project using Visual Studio 2017.

I added the Nuget Package System.Data.Sqlite. On a test I have the following:

using (SQLiteConnection connection = new SQLiteConnection(connSring)) {

  connection.Open();
  // remaining code

}

When I run it I get the error:

Unable to load DLL 'SQLite.Interop.dll: The specified module could not be found. 

I changed the Build Plataform Target from "Any CPU" to "x86" and "x64" but nothing solved it.

How can I solve this problem?

Miguel Moura
  • 36,732
  • 85
  • 259
  • 481
  • Possible duplicate of [Unable to load DLL 'SQLite.Interop.dll'](https://stackoverflow.com/questions/13028069/unable-to-load-dll-sqlite-interop-dll) – KonstantinL May 23 '17 at 13:56

0 Answers0