C#,update 的where条件是两个,但是用and连接时总提示用分号隔开;
publicvoidUpdate1(Hashtableleibie,stringleibie_bianhao,stringleibie_fubianhao){Databa...
public void Update1(Hashtable leibie, string leibie_bianhao,string leibie_fubianhao)
{
Database db = new Database();
string strCond = "Where leibie_bianhao = '" + leibie_bianhao and "leibie_fubianhao=" + leibie_fubianhao;
db.Update("[leibie]", leibie, strCond);
} 展开
{
Database db = new Database();
string strCond = "Where leibie_bianhao = '" + leibie_bianhao and "leibie_fubianhao=" + leibie_fubianhao;
db.Update("[leibie]", leibie, strCond);
} 展开
展开全部
字符串的单引号位置错了。
public void Update1(Hashtable leibie, string leibie_bianhao,string leibie_fubianhao)
{
Database db = new Database();
string strCond = "Where leibie_bianhao = '" + leibie_bianhao +"' and leibie_fubianhao='" + leibie_fubianhao + "'";
db.Update("[leibie]", leibie, strCond);
}
public void Update1(Hashtable leibie, string leibie_bianhao,string leibie_fubianhao)
{
Database db = new Database();
string strCond = "Where leibie_bianhao = '" + leibie_bianhao +"' and leibie_fubianhao='" + leibie_fubianhao + "'";
db.Update("[leibie]", leibie, strCond);
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
public void Update1(Hashtable leibie, string leibie_bianhao,string leibie_fubianhao)
{
Database db = new Database();
string strCond = "Where leibie_bianhao = '" + leibie_bianhao+"' and leibie_fubianhao='" + leibie_fubianhao+"'";
db.Update("[leibie]", leibie, strCond);
}
{
Database db = new Database();
string strCond = "Where leibie_bianhao = '" + leibie_bianhao+"' and leibie_fubianhao='" + leibie_fubianhao+"'";
db.Update("[leibie]", leibie, strCond);
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
public void Update1(Hashtable leibie, string leibie_bianhao,string leibie_fubianhao)
{
Database db = new Database();
string strCond = "Where leibie_bianhao = '" + leibie_bianhao and "leibie_fubianhao=" + leibie_fubianhao;
string strCond = "Where leibie_bianhao=' "+leibie_bianhao+" ' and leibie_fubianhao=' " +leibie_fubianhao+" ' ";
db.Update("[leibie]", leibie, strCond);
}
{
Database db = new Database();
string strCond = "Where leibie_bianhao = '" + leibie_bianhao and "leibie_fubianhao=" + leibie_fubianhao;
string strCond = "Where leibie_bianhao=' "+leibie_bianhao+" ' and leibie_fubianhao=' " +leibie_fubianhao+" ' ";
db.Update("[leibie]", leibie, strCond);
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
1. 你的sql语句拼接有错误
2. update语句为什么没有看到update关键字?
2. update语句为什么没有看到update关键字?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询