Tagged Questions

0
votes
2answers
77 views

Concatenate a date and time value

Hi, i need to concatenate a date value and a time value to make one value representing a datetime in javascript. thanks, daniel
5
votes
9answers
10k 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.
2
votes
6answers
2k views

C# - What is the best way to get a list of the weeks in a month, given a starting weekday?

I need to get a list of weeks for a given month, with Monday as the start day. So for example, for the month of February 2009, this method would return: 2/2/2009 2/9/2009 2/16/2009 2/23/2009
1
vote
6answers
260 views

What is a good way to determine dates in a date range?

What is a good Perl module (or good approach) that returns all the valid calendar dates between a start date and an end date? For example, if I have 1/29/2009 as a start date and 2/3/2009 as an end …
0
votes
1answer
292 views

Failed to convert parameter value from a TimeSpan to a DateTime

Hi, 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 …
3
votes
5answers
667 views

What’s the best way to round a .Net Date object to the nearest Minute? [closed]

I'm doing date calculations, but I'm only interested in Minute-level precision. Given the following Date object as an example, what's the best way to 'round' a Date to the nearest Minute? 2008-10-03 …
0
votes
2answers
291 views

How to get the same time and Day next month using DateTime in c#

I have a c# DateTime object and I need to increment it by one month. example: input output ------------------------------- Jan 12, 2005 Feb 12, 2005 Feb 28, 2009 Mar 28, 2009 Dec 31, …
3
votes
11answers
1k views

performing datetime related operations in PHP

how do you actually perform datetime operations such as adding date, finding difference, find out how many days excluding weekends in an interval? i personally started to pass some of these operations …
0
votes
2answers
283 views

how to convert from prtime to .net datetime

I want to convert a number that is in PRTime format (a 64-bit integer representing the number of microseconds since midnight (00:00:00) 1 January 1970 Coordinated Universal Time (UTC)) to a datetime. …
0
votes
2answers
176 views

What is the correct way of getting the start and end date of a ISO week number in TSQL?

I have the ISO week and year but how do I correctly convert that into two dates representing the start and end of that week?