gpt4 book ai didi

c# - 删除行的SQL代码?

转载 作者:行者123 更新时间:2023-11-30 19:27:18 26 4
gpt4 key购买 nike

请任何人向我解释以下代码为什么没有删除表格行的问题。

con.Open();
SqlCommand cmd = new SqlCommand("delete from RentTable where CID = '" + ID + "' and MID = '" + MID + "' )", con);
int result = cmd.ExecuteNonQuery();
if (result == 1)
{
Message = "succsess";
}
else
{
Message = "!";
}
con.Close();

最佳答案

如果人们首先将他们的查询加载到一个字符串变量中,然后将它们打印出来用于调试目的,那么所有这些类型的问题中的 75% 将得到解决:-)

您在查询末尾有一个右括号 ),这不应该出现。

关于c# - 删除行的SQL代码?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18925682/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com