本文介绍了有没有办法在没有SSL的情况下连接到MySQL数据库?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在尝试连接到本地MySQL数据库.
I'm trying to connect to a local MySQL DB.
我有这个连接器:
using(MySqlConnection conn = new MySqlConnection("Database=Studentenverwaltung;Port=3306;Data Source=127.0.0.1;User Id=root;Password=abc123"))
{
try
{
conn.Open();
Console.WriteLine("Opened!");
conn.Close();
}
catch(Exception e)
{
Console.WriteLine("Cannot open Connection");
Console.WriteLine(e.ToString());
}
}
但是我得到了这个例外:
But I get this Exception:
它似乎无法连接到数据库,因为该数据库不支持SSL.那么有没有办法在没有SSL的情况下连接到数据库?
It seems that it cannot connect to the DB because the DB doesn't support SSL. So is there a way how to connect to the DB whithout SSL?
推荐答案
您是否尝试过将SslMode
属性添加到您的连接字符串中?
Have you tried to add the SslMode
property to your connection string?
这应该有效:
new MySqlConnection("Database=Studentenverwaltung;Port=3306;Data Source=127.0.0.1;User Id=root;Password=abc123;SslMode=none;")
这篇关于有没有办法在没有SSL的情况下连接到MySQL数据库?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!