我在 domainindia.org 上有一个 Windows 服务器。我为 mysql 创建了一个用户,我正在尝试使用 c# 中的以下连接字符串连接到 MySQL。
Driver={MySQL ODBC 3.51 Driver};Server=IPaddress;Database=db1;User=user;Password=password; Option=3;
我无法连接。有人能告诉我这个连接字符串可能有什么问题吗?相同的连接字符串在我的本地工作。
我试图为此授予权限,但不允许我执行查询。
谁能告诉我如何连接到我的服务器?
这是我的 web.config
<?xml version="1.0"?>
<!--
For more information on how to configure your ASP.NET application, please visit
http://go.microsoft.com/fwlink/?LinkId=169433
-->
<configuration>
<connectionStrings>
<add name="dbConnection" connectionString= "Driver={MySQL ODBC 3.51 Driver};Server=IPadress;Database=db1;User=Myuser;Password=myPassword;Option=3;"/>
</connectionStrings>
<system.web>
<compilation debug="true" targetFramework="4.0"/>
</system.web>
</configuration>