我使用C#开发了应用程序表单,并将此应用程序与像这样的MySQL数据库连接
string Coonstring = "datasource=localhost;port=3306;username=root;password=***;Charset=utf8";
string cmd = "select name from project.material ;";
MySqlConnection connectionDatabase = new MySqlConnection(Coonstring);
MySqlCommand cmddata = new MySqlCommand(cmd, connectionDatabase);
MySqlDataReader myreader;
当我尝试构建这个应用程序时。并创建安装文件并获取此安装文件到另一台笔记本电脑错误messagbox出现告诉我缺少MySQL主机。
那我该怎么办?