I'm trying to put togeather a multiple update statement
using the following code:
Insert_vehicle.CommandText = "UPDATE tbl_bmw_ks_imagestatus SET tbl_bmw_ks_imagestatus.ks_notes = '" + Replace(Insert_vehicle__varnotes, "'", "''") + "' WHERE request_ID = " + Replace(Insert_vehicle__varID, "'", "''") + ""
but getting the following error:
Microsoft OLE DB Provider for ODBC Drivers (0x80040E10)
[Microsoft][ODBC Microsoft Access Driver] Too few parameters. Expected 1.
is my syntax wrong or is it somthing else im missing.
TIA.
Mark
using the following code:
Insert_vehicle.CommandText = "UPDATE tbl_bmw_ks_imagestatus SET tbl_bmw_ks_imagestatus.ks_notes = '" + Replace(Insert_vehicle__varnotes, "'", "''") + "' WHERE request_ID = " + Replace(Insert_vehicle__varID, "'", "''") + ""
but getting the following error:
Microsoft OLE DB Provider for ODBC Drivers (0x80040E10)
[Microsoft][ODBC Microsoft Access Driver] Too few parameters. Expected 1.
is my syntax wrong or is it somthing else im missing.
TIA.
Mark