将图像插入到从WPF中的DataGrid中选择的mysql中

时间:2015-10-17 16:20:27

标签: c# mysql wpf

我的wpf中有一堆带有图像的DataGrid。 我必须从我的DataGrid中选择一个图像并将该图像插入到mysql DB中。 我的代码无法正常工作。 我需要帮助。我的代码如下。

private void btnImage_Click(object sender, RoutedEventArgs e) {
{ string constr = "Data Source=localhost;port=3306;Initial Catalog=MyCollege;User Id=root;password=2525"; MySqlConnection con = new MySqlConnection(constr); MySqlCommand cmd = new MySqlCommand("INSERT INTO images(Image) VALUES ('" + dataGrid1.SelectedValue + "')", con); con.Open(); int s1 = cmd.ExecuteNonQuery(); if (s1 > 0) { lbl1.Content = "Image inserted succesfully"; } con.Close(); } }

0 个答案:

没有答案