G
Guest
I'm performing an Update query using an OleDbCommand. The SQL in that command
looks like...
UPDATE FeedbackT SET DateTime=?, Comment=?, PressOrg=? WHERE Type = 'UpdateMe'
When I try to populate the DataTime parameter using
P = new OleDbParameter("@DateTime", (Object)DateTime.Now);
I get a runtime error. Any idea what I might be doing wrong?
Alex
looks like...
UPDATE FeedbackT SET DateTime=?, Comment=?, PressOrg=? WHERE Type = 'UpdateMe'
When I try to populate the DataTime parameter using
P = new OleDbParameter("@DateTime", (Object)DateTime.Now);
I get a runtime error. Any idea what I might be doing wrong?
Alex