gpt4 book ai didi

sql - 如何判断在经典 ASP 中使用 ADO 调用 SQL Execute() 是否失败

转载 作者:行者123 更新时间:2023-12-04 22:36:04 26 4
gpt4 key购买 nike

我有以下缩短的经典 ASP 代码,可以进行 SQL 插入调用...

cmd.CommandText = "insert into MyTable values(blah, blah, blah)"   
cmd.CommandType = adCmdText

Set rs = cmd.Execute()

使用 Execute() 返回的记录集如何判断插入是否成功?

最佳答案

检查 Err 对象

cmd.CommandText = "insert into MyTable values(blah, blah, blah)"   
cmd.CommandType = adCmdText
On Error Resume Next
Set rs = cmd.Execute()
If Err.number<>0 or objConnection.Errors.Count <> 0 Then
'Do something to handle the error
End If
On Error Goto 0

也可以在 15Seconds 上查看此链接

关于sql - 如何判断在经典 ASP 中使用 ADO 调用 SQL Execute() 是否失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2373448/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com