标题:刪除問題
只看楼主
swx
Rank: 1
等 级:新手上路
帖 子:9
专家分:0
注 册:2004-5-4
 问题点数:0 回复次数:2 
刪除問題
我想從一個表從刪除所有產品編號為TB48605的記錄.代碼如下:
private sub command1_click()
= adCmdText
Adodc1.RecordSource = "delete tempppp where strproductid='TB48605'"
adodc1.recordset.updata
end sub
程式運行完后.記錄卻沒有被刪除.
但是下面那個sql語句
delete tempppp where strproductid='TB48605 這一句在SQL Query Abaktzer里
可以刪除.
我想問一下在vb中.我想實現上面的效果要怎么寫才對?
請高手指點.
搜索更多相关主题的帖子: SQL delete sub tempppp strproductid 
2004-06-06 15:24
sunboy
Rank: 1
等 级:新手上路
帖 子:54
专家分:0
注 册:2004-4-18
得分:0 

你可以這樣寫啊.

private sub command1_click() Adodc1.CommandType = adCmdText Adodc1.RecordSource = "select * from tempppp where strproductid='TB48605'" adodc1.recordset.delete

end sub

試一下啦~~~


看到代码晕啦!!!
2004-06-07 17:53
griefforyou
Rank: 6Rank: 6
等 级:贵宾
威 望:27
帖 子:3336
专家分:0
注 册:2004-4-15
得分:0 

你的SQL语句错了吧,试试这样

Private sub Command1_click() Adodc1.CommandType = adCmdText Adodc1.RecordSource = "delete from tempppp where strproductid='TB48605'" Adodc1.Refresh End Sub

天津网站建设 http://www./
2004-06-09 08:54



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-2085-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.494510 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved