cmd.CommandText = "update dbo.diagnosis SET id=" + SetValueForText + "ss=" + sh;
wheresh
和 columnss
是 bool 数据类型,id
andSetValueForText
是 int 数据类型。异常是附近的无效语法ss
。
cmd.CommandText = "update dbo.diagnosis SET id=" + SetValueForText + "ss=" + sh;
wheresh
和 columnss
是 bool 数据类型,id
andSetValueForText
是 int 数据类型。异常是附近的无效语法ss
。