2
我有我需要從表Client
級聯刪除與Ado.net
public void Delete_Client(int _id_client)
{
Data.Connect();
using (Data.connexion)
{
string s = "Delete From CLIENT where id_client = " + _id_client;
SqlCommand command = new SqlCommand(s, Data.connexion);
try
{
command.ExecuteNonQuery();
}
catch { }
}
}
表Client
包含對另一個表的外引用刪除行的應用程序。因此出現異常表示刪除必須是級聯的。
那麼我怎麼能改變我的代碼來做到這一點(我使用sql服務器作爲dbms)?