Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i am trying to save (using linq) the date and time to an SQL field (datetime data type) using Datetime.Now but the seconds are not coming through. Does anyone know how to rig that up?

Ta.

share|improve this question
Can you show us your code? – Lasse V. Karlsen Jul 23 '09 at 8:16
using (DataContext db = new DataContext()) { table table = new table { DTStamp = DateTime.Now }; db.table.InsertOnSubmit(table); db.SubmitChanges(); } – Grant Jul 23 '09 at 8:22

2 Answers

It works fine for me with DateTime.Now. I only have problems with millisecond precision due to the different way how SQL server stores the date.

What type has the SQL table column for your date? Can it store seconds?

share|improve this answer
ive tried using smalldatetime and also datetime – Grant Jul 23 '09 at 8:28
SMALLDATETIME has an accuracy of 1 MINUTE. DATETIME has 3.33 milliseconds. – marc_s Jul 23 '09 at 10:13
up vote 1 down vote accepted

As i was using a smalldatetime data field initally i forgot to update my data access layer (linq) after i changed it to datetime. Updating the linq data context has solved my problem. Thanks all.

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.