执行update语句的时候加入分隔符
"UPDATE book SET T1= '" + DropDownList3.Text + "'+'" + DropDownList1.Text + "'+'"
我想在写入数据库的两个DropDownList中加入类似/的分割符分割两个值,应该怎么改
------解决方案--------------------try:
string v = DropDownList3.Text + "/" + DropDownList1.Text;
string sql = "UPDATE book SET T1= '" + v + "'";
------解决方案--------------------"UPDATE book SET T1= '" + DropDownList3.Text + "'+
"/"+'" + DropDownList1.Text + "'+'"
------解决方案--------------------
update t_softwarefamily set FAMILY_DESC='2'+'/'+'3' where FAMILY_ID=160,这是直接在数据库里的语句,你只要把2和3换成DropDownList3.Text和DropDownList1.Text就行了,效果见图。