I'm relatively new to ASP and have been trying to troubleshoot this query for sometime now...
It is throwing this error
Microsoft VBScript compilation (0x800A0401)
Expected end of statement
Any suggestions are appreciated
Code:
sqlText = "INSERT INTO itemsOrdered " _
& " (orderID, productDesc, productID, itemPrice, beforeTax, sAmt, GST, PST, quantity) values " _
& " ("&intOrderID&", '"&(strProdName)&"', "&intStock&", "&intPrice&", "&intExtPrice&", "&intShipping&", "&intTax&", "&intPST&", "&intQuant&")"
Conn.Execute(sqlText)
It is throwing this error
Microsoft VBScript compilation (0x800A0401)
Expected end of statement
Any suggestions are appreciated