gpt4 book ai didi

sql - 对象不支持此属性或方法 : 'rsSQL.Execute'

转载 作者:行者123 更新时间:2023-12-04 15:54:48 25 4
gpt4 key购买 nike

这是我的 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'

我不明白为什么

最佳答案

您不能对查询执行 Execute 方法,而必须在连接上执行。

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

conn.Execute(sql)

关于sql - 对象不支持此属性或方法 : 'rsSQL.Execute' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7669201/

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