hi all very new to sql I sending this SQL:
UPDATE product SET Product ID, Product Name, Color, Size, M/F, Price (SRP), Product Type ID, Product Class, Supplier ID) SET Product ID = '1107', Product Name = 'Active Outdoors Lycra Glove', Color = '', Size = 'xsm', M/F = '', Price (SRP) = '16.5', Product Type ID = '5', Product Class = 'Accessory', Supplier ID = '1' WHERE (((Product.Product ID)=1107));
using the asp:
cn.Execute(sqlUPDATE) 'sqlUPDATE is equl to the above statement
have a got the syntax wrong I get this error:
Error Type:
Microsoft OLE DB Provider for ODBC Drivers (0x80040E14)
[Microsoft][ODBC Microsoft Access Driver] Syntax error in UPDATE statement.
/ line 61
any suggestion would be great, thanks
UPDATE product SET Product ID, Product Name, Color, Size, M/F, Price (SRP), Product Type ID, Product Class, Supplier ID) SET Product ID = '1107', Product Name = 'Active Outdoors Lycra Glove', Color = '', Size = 'xsm', M/F = '', Price (SRP) = '16.5', Product Type ID = '5', Product Class = 'Accessory', Supplier ID = '1' WHERE (((Product.Product ID)=1107));
using the asp:
cn.Execute(sqlUPDATE) 'sqlUPDATE is equl to the above statement
have a got the syntax wrong I get this error:
Error Type:
Microsoft OLE DB Provider for ODBC Drivers (0x80040E14)
[Microsoft][ODBC Microsoft Access Driver] Syntax error in UPDATE statement.
/ line 61
any suggestion would be great, thanks