My application stores dates as OLE Automation doubles with the DateTime.ToOADate() command.
I need to create a SQL view which shows me the Date stored. How can I quickly convert the double to a date?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Does
work? From here
That sounds pretty much like the same system SQL Server uses when you cast a date as a float except the offset needed to be fiddled by 2 and for “negative” dates. SQL server will substract backwards. So -1.25 is 18:00 whereas for OLE that means 06:00.