我最近创建了一个任务管理软件,它基于在dataGridView中显示任务,并通过以下函数绑定到数据库:
public void Bind(string sqlquery)
{
mySqlConnection = new MySqlConnection(
"SERVER=localhost;" +
"DATABASE=test;" +
"UID=root;" +
"PASSWORD=Pa$$123;");
try
{
mySqlConnection.Open();
string query = sqlquery;
mySqlDataAdapter = new MySqlDataAdapter(query, mySqlConnection);
mySqlCommandBuilder = new MySqlCommandBuilder(mySqlDataAdapter);
mySqlDataAdapter.UpdateCommand = mySqlCommandBuilder.GetUpdateCommand();
mySqlDataAdapter.DeleteCommand = mySqlCommandBuilder.GetDeleteCommand();
mySqlDataAdapter.InsertCommand = mySqlCommandBuilder.GetInsertCommand();
dataTable = new DataTable();
mySqlDataAdapter.Fill(dataTable);
bindingSource = new BindingSource();
bindingSource.DataSource = dataTable;
dataGridView1.DataSource = bindingSource;
}
catch {
notifyIcon1.BalloonTipTitle = "Erreur de connexion";
notifyIcon1.BalloonTipText = "La connexion au serveur est échouée, nous éssayons de se connecter à nouveau, si un ce problème dure plus de 5 minutes ou si vous rencontrez des problèmes d'affichage nous vous conseillons de fermer l'application et la relancer à nouveau";
notifyIcon1.BalloonTipIcon = ToolTipIcon.Warning;
notifyIcon1.ShowBalloonTip(5000);
}
//close mysql conn
mySqlConnection.Dispose();
}
在运行Windows 7(x86)的计算机中,所有内容都按预期工作,但当我尝试在其他计算机上使用该应用程序时,我将datagridview留空,我看不到任何数据显示。
为什么dataGridView只能在我的计算机上运行而不能在其他计算机上运行?
编辑:我的目标是.NET Framework 4.0 Client Profile,我使用VS2010 Express Edition进行应用程序部署,我尝试将Target Net Framework更改为旧版本但结果是一样的。
我还尝试在其他4台计算机上使用该应用程序:Windows XP SP3,Windows 7(x86),Windows 7(x64),结果相同。除非我在自己的计算机上运行应用程序,否则dataGridView中不会显示任何数据。
任何帮助都将受到高度赞赏。
答案 0 :(得分:4)
您正在连接到Localhost
mySqlConnection = new MySqlConnection(
"SERVER=localhost;" +
"DATABASE=test;" +
"UID=root;" +
"PASSWORD=Pa$$123;");
这可能是在您的开发机器上,您需要更改连接以使用网络上的真实服务器