我有 Windows 应用程序来添加购买信息。在将购买添加到数据库之前,用户从组合框中选择项目并添加到列表框中。当用户单击添加购买时,数据库中将有一个或多个项目。
那里项目的名称与数据库中的产品名称完全匹配。
我想获取列表框中每个项目的字符串,然后编写减少数据库中项目数量的 sql 查询。总数量存储在 Quantity 列下的表 Product 中。
有没有人有想法执行这项任务?
我正在尝试将列表框项的字符串一一传递给此方法
public string Update(string product)
{
// Create connection object
int ix = 0;
string rTurn = "";
OleDbConnection oleConn = new OleDbConnection(connString);
try
{
oleConn.Open();
string sql = "UPDATE [Product] SET [Quantity]=[Quantity] - 1 " + " WHERE [Product Name]= " + product;
OleDbCommand oleComm = new OleDbCommand(sql, oleConn);
oleComm.Parameters.Add("@product", OleDbType.Char).Value = product;
ix = oleComm.ExecuteNonQuery();
if (ix > 0)
rTurn = "Stock Updated";
else
rTurn = "Update Failed";
}
catch (Exception ex)
{
}
finally
{
oleConn.Close();
}
return rTurn;
}
以上方法将从以下方法中获取产品名称:
public string updateStock()
{
string listItem = string.Empty;
foreach (var listBoxItem in listBox1.Items)
{
if (listBox1.Items.IndexOf(listBoxItem) < listBox1.Items.Count - 1)
{
listItem = listBox1.Items.ToString();
}
}
return listItem;
}
我将从按钮事件处理程序中调用此代码
Update(updateStock());