Tagged Questions
17
votes
12answers
114k views
How to convert DateTime to VarChar
I am working on a query in Sql Server 2005 where I need to convert a value in DateTime variable into a varchar variable in 'yyyy-mm-dd' format (without time part).
Please help, thanks.
1
vote
1answer
1k views
Failed to convert parameter value from a TimeSpan to a DateTime
I am using SQL Server 2008.
First I gave SqlDbType.Time for System.TimeSpan to the parameter type for Insert and Update.
I works successfully.
Now I changed to DbType.Time instead of ...