对象不支持此属性或方法:“rsSQL.Execute”
这是我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您无法在查询上执行
Execute
方法,而必须在连接上执行此操作。You cannot do the
Execute
method on the query, you have to do it on the connection instead.