gpt4 book ai didi

asp.net - 无法连接到 .NET MVC3 中的 mysql 数据库

转载 作者:行者123 更新时间:2023-11-29 14:14:39 25 4
gpt4 key购买 nike

我在连接 .net 中的 mvc 3 应用程序时遇到一些问题。我知道在使用 web.config 文件连接之前必须创建 mysql 数据库实例。我的连接字符串如下:

<connectionStrings>
<add name="epmsDb"
connectionString="Server=localhost;Database=database1;
Uid=root;Pwd=mypassword"
providerName="System.Data.SqlClient" />
</connectionStrings>

我已经在服务器资源管理器中创建了一个名为 epmsDb 的数据库。然后我尝试使用以下代码获取代码中的connectionString:

  string connectionString =
ConfigurationManager.ConnectionStrings["epmsDb"].ConnectionString;
context = new DataContext(connectionString);
usersTable = context.GetTable<UserObj>();

每次我尝试访问数据库时,都会抛出此异常:

   A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server)

一周以来我一直在努力克服这个问题。有谁知道为什么会发生这种情况?

最佳答案

您的示例尝试连接到 MS SQL 数据库。要连接到 MySQL 数据库,您可能需要使用 MySQL connector

然后更改 ProviderName 属性:

<connectionStrings>
<add name="epmsDb"
connectionString="Server=localhost;Database=database1;
Uid=root;Pwd=mypassword"
providerName="MySql.Data.MySqlClient" />
</connectionStrings>

关于asp.net - 无法连接到 .NET MVC3 中的 mysql 数据库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12872714/

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