Hello,Can any one please advise on the formatting the date so it can be inserted into the database without getting error.insert into tableA(fieldA, fieldB, dateC)values (?, ?, ?)or insert into tableA(fieldA, fieldB, dateC)values ('?', '?', '?')I tried either insert statements above for SQL server bu...