My page is in VB.Net, and tries to do an OleDB.ExecuteNonQuery on this string:
INSERT INTO tblGCardDetails (OrderID, Image) VALUES(5924045, '0007')
I get an System.Data.OleDb.OleDbException: Syntax error in my code.
The same string works when dropped into an Access query. What could I be missing?
INSERT INTO tblGCardDetails (OrderID, Image) VALUES(5924045, '0007')
I get an System.Data.OleDb.OleDbException: Syntax error in my code.
The same string works when dropped into an Access query. What could I be missing?