对象不支持此属性或方法:“rsSQL.Execute”

发布于 2024-12-08 10:13:45 字数 479 浏览 0 评论 0原文

这是我的 ASP:

sql="select * from empPac where empIdent='" & empIdent & "' and catalogIdent=" & catItem
Set rsSQL = Server.CreateObject ("ADODB.Recordset")
rsSQL.Open sql,strConnect

sql="update empPac set sizeChartIdent=" & newSize & " where empPacIdent=" & rsSQL("empPacIdent")
rsSQL.Execute(sql)

现在的问题是它抛出以下错误:

Object doesn't support this property or method: 'rsSQL.Execute'

我不明白为什么

heres my ASP:

sql="select * from empPac where empIdent='" & empIdent & "' and catalogIdent=" & catItem
Set rsSQL = Server.CreateObject ("ADODB.Recordset")
rsSQL.Open sql,strConnect

sql="update empPac set sizeChartIdent=" & newSize & " where empPacIdent=" & rsSQL("empPacIdent")
rsSQL.Execute(sql)

now the problem is that it is throwing the following error:

Object doesn't support this property or method: 'rsSQL.Execute'

i cant figure out why

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

单身狗的梦 2024-12-15 10:13:45

您无法在查询上执行 Execute 方法,而必须在连接上执行此操作。

set conn=Server.CreateObject("ADODB.Connection")
conn.open strConnect

conn.Execute(sql)

You cannot do the Execute method on the query, you have to do it on the connection instead.

set conn=Server.CreateObject("ADODB.Connection")
conn.open strConnect

conn.Execute(sql)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文