gpt4 book ai didi

c# - MySql.Data.dll 中的 IO.FileNotFoundException : Can't load System. Security.Permissions

转载 作者:行者123 更新时间:2023-11-29 02:12:17 26 4
gpt4 key购买 nike

我正在使用 Visual Studio Code,我正在尝试连接到我的 MySql 服务器 (5.5)。我已经下载并安装了最新的 (6.10.6) MySql 连接器。我不得不研究如何在 VS Code 中添加引用,但我做到了。现在我的 .csproj 文件看起来像这样:

<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Reference Include="Lib\MySql.Data.dll">
<HintPath>MySql.Data</HintPath>
<SpecificVersion>False</SpecificVersion>
</Reference>
</ItemGroup>
</Project>

我已经将C:\Program Files (x86)\MySQL\MySQL Connector Net 6.10.6\Assemblies\v4.5.2的内容复制到myProject\Lib中。编译时没有错误,全是绿色。但是当我尝试使用此代码进行连接时

using System.Data;
using System.Security.Permissions;

using MySql.Data;
using MySql.Data.MySqlClient;
public static bool Connect(){
string str = "server=192.168.0.160;user=usr;database=DB;port=3306;password=pass";

MySqlConnection connection = new MySqlConnection(str);
connection.Open();
System.Console.WriteLine(connection.State);
return true;
}

它失败了,并产生了这个错误:

An unhandled exception of type 'System.IO.FileNotFoundException' occurred in MySql.Data.dll: 'Could not load file or assembly 'System.Security.Permissions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51'. The system can't find the file.'  

我不知道为什么,因为 using 指令没有发出错误信号。

最佳答案

程序集 System.Security.Permissions 当前不可用于 .NET core 应用程序,所以我猜你使用的是与 .NET core 2 不兼容的旧版本 MySQL Database Provider。

根据official documentation .NET core 2.0 仅从 6.10 版开始受支持。

尝试从以下位置安装最新版本:https://dev.mysql.com/downloads/connector/net/6.10.html

编辑

如果您已经拥有该版本但仍然无法正常工作,则可能是您缺少一些引用资料。为什么不尝试使用官方的 NuGet 而不是在 GAC 中引用 dll,这里是命令:

Install-Package MySql.Data -Version 6.10.6

如果您使用的是 VS Code,则可以使用 NuGet 包管理器扩展直接从编辑器管理包:https://marketplace.visualstudio.com/items?itemName=jmrog.vscode-nuget-package-manager

编辑2

似乎这可能是一个错误,因为我发现了这个问题 .NET Core 2 with MySql.Data results in permission error接受的答案建议更新到版本 8。

所以尝试更新到版本 8.0.10-rc 并让问题消失,这是 NuGet 命令:

Install-Package MySql.Data -Version 8.0.10-rc

关于c# - MySql.Data.dll 中的 IO.FileNotFoundException : Can't load System. Security.Permissions,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48602743/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com