Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to insert a row in ms-sql table using the following code

SqlCMDText = "INSERT INTO attendance(date, time_in, time_out, time_total, status,";
SqlCMDText += "  is_late_in, is_half_day, is_early_out, user_id, remarks)";
SqlCMDText += " VALUES('@yestarday_date', 'NA', 'NA', 'NA', 'ABSENT', 'NA', 'NA', 'NA', 52, 'DONE BY PORTAL')";
SqlCMD = new SqlCommand(SqlCMDText, SqlCON);
SqlCMD.Parameters.AddWithValue("@yestarday_date", Yestarday);
SqlCMD.ExecuteNonQuery();

Where Yestarday is a string variable containing short date format like "04/04/2011". I also tried passing datetime variable itself but it does not work, I get same error as below.

"Syntax Error Converting DateTime From Character String"

What format should I use to make it work?

Thanks.

share|improve this question
your column is a datetime? so adding a parameter as a datetime should work – lnu Apr 29 '11 at 7:39

3 Answers

up vote 1 down vote accepted

Use DateTime.Parse(Yestarday)

SqlCMD.Parameters.AddWithValue("@yestarday_date", DateTime.Parse(Yestarday));
share|improve this answer
Thanks a lot Ranhiru this worked. DateTime.Parse(Yestarday). But I still don't understand why direct DateTime object is not working it should work I think. – Ahmed Apr 29 '11 at 8:13

You should use the DateTime object directly. If you get another error, post that one.

share|improve this answer

Try the following code.

CurDate = DateTime.ParseExact(@Yestarday, "dd/MM/yyyy", System.Globalization.CultureInfo.CurrentCulture, System.Globalization.DateTimeStyles.None)
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.