0

当我执行我的独立程序时,它崩溃并说:

Exception: System.IO.FileNotFoundException: cannot find assembly or file Mysql.Data  or load one of the dependable sources at project3.class.executesend<> at project3.class.initialize<> at project3.class.main<>

经过一番搜索,我发现我应该将这些.dll文件作为资源添加到程序中。在我这样做之后,它产生了同样的错误。

我怎样才能解决这个问题?

4

2 回答 2

3

如果我理解得很好,您在项目的引用文件夹中添加了 Mysql.Data。

现在,在 VS Explorer 中右键单击它,转到属性,并将属性“复制本地”设置为 true。

因此,每当您构建应用程序时,它将被复制到“调试”或“发布”文件夹中。

于 2013-01-31T21:33:36.910 回答
0

对于 MySQL Workbench 8.0.19 版本,我需要安装 Visual C++ 2015-2019 DLL。

我安装了 2008、2010、2013 和 2015,有 x64 和 x32 两种版本,但遇到了这个错误。

Visual C++ Redistributables 在这里...

https://support.microsoft.com/en-us/help/2977003/the-latest-supported-visual-c-downloads

于 2020-01-30T16:28:15.257 回答