<% set rs=server.CreateObject("adodb.recordset") sql="select * from building where id=" & request("bid") rs.open sql,conn,3,3 ren=cint(rs("teampopulation"))+1 response.Write ren conn.execute("update building set teampopulation=ren where id="&request("bid")) %>
building是表teampopulation是字段。
我想让该表的这个字段的值+1,可是运行报错:
Microsoft OLE DB Provider for ODBC Drivers 错误 '80040e10'
[Microsoft][ODBC Microsoft Access Driver] 参数不足,期待是 1。
/bai/tuan.asp,行16
我用WRITE也能输出正常的加一之后的值,就是传递不到UPDATE中去。如果 把
UPDATE中的REN 直接换成数字 就能正常。
请指教!!!!