0
("update Medicine set Name = ' " + textbox1.Text + " ', Company = ' " + textbox2.Text + " ', Type = ' " + textbox3.Text + " ', Quantity = ' " + textbox4.Text + " ' where P_id =' " + textbox5.Text + " ' ");
它不工作,因爲每當我更新任何列它使其他列NULL。如何在數據庫的其他列無干擾地更新特定列?
您有一個SQL注入漏洞。 – SLaks
如果您不想設置其他列,請不要設置其他列。 – SLaks