I am trying to update a table using asp but get this error on the page and the table is not updated
Microsoft OLE DB Provider for ODBC Drivers error '80004005'
[Microsoft][ODBC SQL Server Driver][SQL Server]Warning: Null value is eliminated by an aggregate or other SET operation.
Here is the code to update
My google efforts say that this error comes when using SUM() but I am using a simply update command.
can anyone help?
Microsoft OLE DB Provider for ODBC Drivers error '80004005'
[Microsoft][ODBC SQL Server Driver][SQL Server]Warning: Null value is eliminated by an aggregate or other SET operation.
Here is the code to update
Code:
SQL = "UPDATE table SET row='" & request.querystring("answer") & "' WHERE id = '"&request.querystring("id")&"'"
objConn.execute SQL
My google efforts say that this error comes when using SUM() but I am using a simply update command.
can anyone help?