无法加载DLL' SQLite.Interop.dll:找不到指定的模块。

时间:2017-05-23 10:23:18

标签: c# sqlite visual-studio-2017

我使用Visual Studio 2017在测试项目中安装了SQL Lite。

我添加了Nuget Package System.Data.Sqlite。在测试中我有以下内容:

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

  connection.Open();
  // remaining code

}

当我运行它时,我收到错误:

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

我从#34;任何CPU"更改了Build Plataform目标。到" x86"和" x64"但没有解决它。

我该如何解决这个问题?

0 个答案:

没有答案