Helo all,
Please tell me what is error in below line:
cmd = new OleDbCommand(@"UPDATE Param = ?, Param1 = ?, [Received] = True, WHERE mailID = ?", connection);
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Shweta LodhaPosted Dec 19, 2014, 9:06 AM
There is an extra comma after True. Please change your code to:
cmd = new OleDbCommand(@"UPDATE Param = ?, Param1 = ?, [Received] = True WHERE mailID = ?", connection);
Shweta LodhaPosted Dec 19, 2014, 9:33 AM
RukhsaanPosted Dec 19, 2014, 9:08 AM