I have this query to upate a table from my ASP page. The table has 10 rows and 11 cols (RowNum, col1 thru col10
I've taken a look at it by doing request.write(Query) but it looks fine. HOWEVER I still get this error: Too few parameters. Expected 1.
Can anybody shed a little light for me? Thank you MUCH, in advance.
Code:
Query = "UPDATE poolTB SET RowNum=1, col1=A1, col2=A1, col3=A1, col4=A1, col5=A1, col6=A1, col7=A1, col8=A1, col9=A1, col10=A1 WHERE RowNum=" & rowCount
I've taken a look at it by doing request.write(Query) but it looks fine. HOWEVER I still get this error: Too few parameters. Expected 1.
Can anybody shed a little light for me? Thank you MUCH, in advance.