Poiché non stai assegnando alcun valore a @Price
nel codice C# mentre il tuo Warehouse Id
e il Discount rate
sono soggetti ad assegnazione da parte dell'utente finale, ti consiglio di inserire il tuo codice in questo modo:
private void button4_Click(object sender, EventArgs e)
{
try
{
var discountRate = 0.07; //could be Convert.ToDouble(textBox1.Text) or something else
var warehouseId = 6; //again, could be Convert.ToInt32(textBox2.Text) or something else
myConnection = new SqlConnection(frm.cs);
myCommand = new SqlCommand("update Inventory set Price=Price*([email protected]) " +
"where [email protected]", myConnection);
myConnection.Open();
myCommand.Parameters.AddWithValue("@DiscountRate", discountRate);
myCommand.Parameters.AddWithValue("@WarehouseId", warehouseId);
myCommand.ExecuteNonQuery();
myConnection.Close();
MessageBox.Show("Update successfully!");
DisplayData();
if (myConnection.State == ConnectionState.Open)
{
myConnection.Dispose();
}
}
catch
{
}
}
Ti consiglierei anche di ripensare alla tua richiesta in quanto aggiornerà tutti i prezzi dei prodotti con lo stesso valore, potresti considerare di passare il parametro @ProductId
e la tua domanda sia
update Inventory set Price=Price*([email protected])
where [email protected] and [email protected]
certo che era per esempio.