C# connection MySQL error: SSL connection error [Solved]


Just add SslMode = none; at the end of the join statement
string connectstr=“server=localhost;port=3306;database=test;uid=root;pwd=;SslMode = none;”;

Read More: