我有一个通过编辑两个TextBox产品名称和产品成本来更新SQL数据库的Winform,但是它没有更新数据库,这里是我的示例代码
private void simpleButton5_Click(object sender, EventArgs e)
{
string id = comboBox2.Items[comboBox2.SelectedIndex].ToString();
string name = txtProdName.Text;
string cost = txtProductCost.Text;
cn.Open();
string query = "UPDATE [Product1] SET [Product_Name]= @Product_Name,[Product_Cost]= @Product_Cost where [Product_ID]= @Product_ID";
SqlCommand cmd = new SqlCommand(query, cn);
cmd.Parameters.AddWithValue("@Product_ID", id);
cmd.Parameters.AddWithValue("@Product_Name", name);
cmd.Parameters.AddWithValue("@Product_Price", cost);
try
{
cmd.ExecuteNonQuery();
MessageBox.Show("Update Succesfully");
}
catch (Exception ex)
{
MessageBox.Show(ex.Message, Application.ProductName, MessageBoxButtons.OK, MessageBoxIcon.Error);
}
cn.Close();
}
id的数据类型为char
,Product_Name为nvarchar(50)
,Porduct_Cost为bigint
。
我会赞赏的任何想法
答案 0 :(得分:1)
您的转化似乎有误,如果数据库中的费用字段是bigint则转换
string cost = txtProductCost.Text
到
Int64 cost = Convert.Toint64(txtProductCost.Text);
Int64直接映射到BigInt。
如果是Double,则转换
string cost = txtProductCost.Text
到
Double cost = Convert.ToDouble(txtProductCost.Text);
希望它适合你。
答案 1 :(得分:0)
首先,将字符串值转换为int
string cost = txtProductCost.Text;
costval=int.Parse(cost)// costval is integer
接下来,更新数据库
cmd.Parameters.AddWithValue("@Product_Price", costval);