使用MySqlConnection连接到MySQL时出现System.IO.FileNotFoundException

时间:2018-11-22 10:54:34

标签: c# mysql

我正在尝试在C#中的Wix设置项目中生成与MySQL的连接字符串。这是简单的代码:

string ConnectionString = $"server={ServerName};user id={User};password={Password};persistsecurityinfo=True;Allow User Variables=True;";

 MySqlConnection con = new MySqlConnection(ConnectionString);

但是,在运行设置时,它会抛出System.IO.FileNotFoundException,该事件会记录在Windows事件日志中。

有人可以帮助我吗?

0 个答案:

没有答案