Here is another example that might help you, a pointer that other developers have mentioned your original code is a probe to SQL injection if you bing search this, there are loads of examples that you can find of what SQL injection is. Here is my method that might assist you. A little code example to assist you.
public void updateProductTbl(string prodBrand, string description, decimal weight, decimal unitwholesaleprice, decimal unitretailprice, string prodImage, string location, string qrcode,
string barcode, string suppliercode, int unitinstock, int unitsonorder, int reorderlevel, bool discontinued, decimal unitofmeasure, string prodcategory, int OldValue)
{
query = @"update Product
SET
prod_band=@prodBrand
,prod_description=@description
,prod_weight=@weight
,prod_perUnitwholesalePrice=@unitwholesaleprice
,prod_perUnitRetailPrice = @unitretailprice
,prod_Image=@prodImage
,prod_location=@location
,prod_QRcode=@qrcode
,prod_barcode=@barcode
,prod_supplierFKCode=@suppliercode
,prod_unitsinstock=@unitinstock
,prod_unitsonorder=@unitonorder
,prod_reorderlevel=@reorderlevel
,prod_discontinued=@discontinued
,prod_unitofmeasure=@unittofmeasure
,prod_category=@prodcategory
where prod_rec_id=@OldValue";
try
{
myConn.Open();
SqlCommand myCommand = new SqlCommand(query, myConn);
myCommand.Parameters.AddWithValue("@prodBrand", prodBrand);
myCommand.Parameters.AddWithValue("@description", description);
myCommand.Parameters.AddWithValue("@weight", weight);
myCommand.Parameters.AddWithValue("@unitwholesaleprice", unitwholesaleprice);
myCommand.Parameters.AddWithValue("@unitretailprice", unitretailprice);
myCommand.Parameters.AddWithValue("@prodImage", prodImage);
myCommand.Parameters.AddWithValue("@location", location);
myCommand.Parameters.AddWithValue("@qrcode", qrcode);
myCommand.Parameters.AddWithValue("@barcode", barcode);
myCommand.Parameters.AddWithValue("@suppliercode", suppliercode);
myCommand.Parameters.AddWithValue("@unitinstock", unitinstock);
myCommand.Parameters.AddWithValue("@unitonorder", unitsonorder);
myCommand.Parameters.AddWithValue("@reorderlevel", reorderlevel);
myCommand.Parameters.AddWithValue("@discontinued", discontinued);
myCommand.Parameters.AddWithValue("@unittofmeasure", unitofmeasure);
myCommand.Parameters.AddWithValue("@prodcategory", prodcategory);
myCommand.Parameters.AddWithValue("@OldValue", OldValue);
status = myCommand.ExecuteNonQuery(); // when ExecuteNonQuery method return 1 or 0 if it have saved to sql db
if (status > 0)
{
MessageBox.Show("Your Data has been updated", "Update Data", MessageBoxButton.OK, MessageBoxImage.Information);
}
}
catch(Exception ex)
{
MessageBox.Show("SQL Error in Product Add method:"+ex.ToString(), "Warning Data not saved", MessageBoxButton.OK, MessageBoxImage.Error);
}
finally
{
myConn.Close();
}
}
Hope the abe gives you a good idea of how to go about SQl and passing params in a method.