我有Windows应用程序来添加购买信息。在将购买添加到数据库之前,用户从组合框中选择项目并添加到列表框中。当用户点击添加购买时,数据库中将有一个或多个项目。
这些项目的名称与数据库中的产品名称完全匹配。
我想获取列表框中每个项目的字符串,然后编写sql查询,这减少了数据库中的项目数量。总数量存储在数量列下的表格产品中。
是否有人有想法执行此任务?
我正在尝试将列表框项的字符串逐个传递给此方法
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());
答案 0 :(得分:0)
您可以尝试这样的事情:
public void UpdateStock()
{
foreach (var listBoxItem in listBox1.Items)
{
string result = Update(listBoxItem.ToString());
}
}
public string Update(string product)
{
// Create connection object
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.VarChar, 50).Value = product;
oleComm.ExecuteNonQuery();
rTurn = "Stock Updated";
}
catch (Exception ex)
{
rTurn = "Update Failed";
}
finally
{
oleConn.Close();
}
return rTurn;
}
编辑:添加参数时可以轻松指定大小 - 如上所示。 50是任意的。您应确保大小与目标[产品名称]列的大小相同。