我已经使用 XAMMP 安装了 MySQL 服务器。使用 phpmyadmin 创建了一个包含一些数据的新数据库。然后我尝试使用此代码连接到数据库。但它没有连接。它显示了一个错误。
代码:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Data.SqlClient;
namespace TestConsole
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Testing!");
SqlConnection myco = new SqlConnection("server=localhost;User Id=root;database=customer;Trusted_Connection=yes");
try
{
myco.Open();
}
catch (Exception e)
{
Console.WriteLine(e.ToString());
}
Console.ReadKey();
}
}
}
错误: http: //pastebin.com/MyEtk4w6