vote up 0 vote down star

I'm using Visual Studio 2008. I'm using an .xsd/tableadapters to access a SQL Server 2005 database. One of my tables has a DateTime field. When a record is inserted into the table, the time is automatically converted to the UTC time, which is fine. I just want to know where that takes place. Does SQL Server do the conversion or is .Net doing it? I couldn't find a property in my table column that allows you to set it to UTC. Did I miss something?

I'm using .Net 3.5. Does the System.DateTime datatype automatically use UTC? I tried using the ToUniversalTime method when I insert into my table and the time is the same as when I don't use it.

flag
If you are maniuplating the date using XML in your client application, then it will be in UTC format – Bill Mueller Jul 1 at 14:38

1 Answer

vote up 0 vote down

It's .NET.

To verify, start a SQL Profiler trace and examine the values sent across the wire.

[BTW, SQL Server 2008 has the datetimeoffset data type for UTC aware date and times.]

link|flag

Your Answer

Get an OpenID
or

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