Private Sub Command1_Click()
我們提供的服務(wù)有:成都網(wǎng)站建設(shè)、成都網(wǎng)站設(shè)計(jì)、微信公眾號開發(fā)、網(wǎng)站優(yōu)化、網(wǎng)站認(rèn)證、鐵嶺ssl等。為近1000家企事業(yè)單位解決了網(wǎng)站和推廣的問題。提供周到的售前咨詢和貼心的售后服務(wù),是有科學(xué)管理、有技術(shù)的鐵嶺網(wǎng)站制作公司
Unload Me
End Sub
最好不要用End,End可能導(dǎo)致信息丟失,屬于強(qiáng)制中斷,容易出問題。
還可以把這個(gè)按鈕的Cancel屬性設(shè)為True,這樣如果按ESC鍵就相當(dāng)于按了這個(gè)按鈕,就有按ESC鍵退出的效果。
url="script language=javascriptwindow.close();/script";
Response.Write(url);
if object_id('primarytbl') is not null drop table primarytblgo --建主表create table primarytbl( ID int primary key, --主鍵 aa int, bb int, cc int)go if object_id('foreigntbl') is not null drop table foreigntblgo --建外表create table foreigntbl( ID int primary key, --主鍵 aa int foreign key references primarytbl(ID) --建立外鍵 on update cascade, --更新級聯(lián) dd int, ee int)go --插入主表數(shù)據(jù)insert into primarytblselect 1, 1, 2, 3 union allselect 2, 2, 3, 4 union allselect 3, 3, 4, 5 union allselect 4, 4, 5, 6 union allselect 5, 5, 6, 7 union allselect 6, 6, 7, 8go --插入外表數(shù)據(jù)insert into foreigntblselect 1, 1, 2, 2 union allselect 2, 1, 3, 3 union allselect 3, 2, 4, 4 union allselect 4, 2, 4, 4 union allselect 5, 2, 5, 5 union allselect 6, 3, 6, 6 union allselect 7, 4, 7, 7go --顯示主外表信息select *from primarytbl select *from foreigntblgo--primarytbl/*ID aa bb cc----------- ----------- ----------- -----------1 1 2 32 2 3 43 3 4 54 4 5 65 5 6 76 6 7 8--foreigntblID aa dd ee----------- ----------- ----------- -----------1 1 2 22 1 3 33 2 4 44 2 4 45 2 5 56 3 6 67 4 7 7*/ --更新主表主鍵update primarytblset ID = 8where ID =1go --結(jié)果select *from primarytbl select *from foreigntblgo /*--primarytblID aa bb cc----------- ----------- ----------- -----------2 2 3 43 3 4 54 4 5 65 5 6 76 6 7 88 1 2 3--foreigntblID aa dd ee----------- ----------- ----------- -----------1 8 2 22 8 3 33 2 4 44 2 4 45 2 5 56 3 6 67 4 7 7*/ drop table foreigntbldrop table primarytbl
DataGridView1.Item(想要?jiǎng)h除的行號).delete 可以實(shí)現(xiàn)刪除指定行
對于同時(shí)更新數(shù)據(jù)庫,需要你手動(dòng)的寫相應(yīng)的SQL語句,再進(jìn)行數(shù)據(jù)庫的更新
如:update 或者Delete
您好:
你可以先去掉主鍵關(guān)聯(lián)然后再修改呀,不過這個(gè)只針對沒多少數(shù)據(jù)的時(shí)候,重要數(shù)據(jù)還是遵循規(guī)則比較好!