0
votes
6answers
68 views
Build date range…
I have a start date of 20090101 and an end date of 20091130 and I'm trying to build and array of all the months in between, which would look like this:
<?php
/* ... */
$arrDa …
2
votes
3answers
44 views
check on overlapping dates (vb.net)
Hi
in a program I'm writing I'm creating some objects with a start date (with a datepicker) and an end date (also with a datepicker).
Now I need to check if this object's date ra …
1
vote
4answers
75 views
How to handle recurring dates (dates only) in .NET?
I am trying to figure out a good way to handle recurring events in .NET, specifically for an ASP.NET MVC application. The idea is that a user can create an event and specify that …
2
votes
3answers
49 views
sqlite writing a date into an email
Hi, I am exporting a date value from sqlite and placing it into an email. The date appears like this
279498721.322872
I am using Objective C in an Iphone App. Does anyone know h …
1
vote
2answers
39 views
drupal, rules, flag, date
Hi,
Hope someone can advise.
I am using drupal 6.
I have a node called [classroom].
I would like to have a [vacancy register] associated with each classroom.
vacancy register …
1
vote
5answers
49 views
SQL Server Date Formats — ddd
How do I get the day of the week (in ddd format, so Mon, Tue etc.) in SQL ?
I don't see anything about it in the CAST and CONVERT documentation..
0
votes
2answers
60 views
Odd behavior of mktime()
Continuing on my attempt to create a DateTime class , I am trying to store the "epoch" time in my function:
void DateTime::processComponents(int month, int day, int year,
…
1
vote
1answer
117 views
How can I calculate how many nights are there in a date range?
I need to calculate the quantity of nights (stay at a hotel) from the checkin and checkout dates.
What is the best way to do it?
ie: If I have
Checkin: 12/11/2009 15:00 hs
Ch …
6
votes
17answers
483 views
“Date of birth” validation: How far/much would you go?
I'm quite anal about form validation. So while creating a validator for a "data of birth" (DOB) field in one of my current projects for a job application form (platform/language is …
3
votes
5answers
355 views
How can I calculate/find the week-number of a given date?
How can I calculate/find the week-number of a given date?
50
votes
19answers
3k views
SQL to determine minimum sequential days of access?
The following User History table contains one record for every day a given user has accessed a website (in a 24 hour UTC period). It has many thousands of records, but only one rec …
1
vote
3answers
69 views
Searching on date ranges with Lucene in Java ?
Is it possible to search on date ranges using Lucene in Java? How do I build Lucene search queries based on date fields and dates ranges? For example:
between specified dates
pri …
0
votes
1answer
63 views
Handling partial/incomplete dates in .NET
I have the need to handle partial dates, so for example:
1 April 2009 (stored as 1, 4, 200)
Jan 2000 (Stored as null, 1, 2000)
March 90 (Stored as null, 3, 1990)
00 (Stored as nu …
1
vote
3answers
44 views
Calculate two dates with PHP?
I have two dates in the format below:
Start Date = 30-10-2009
End Date = 30-11-2009
How, with PHP could I calculate the seconds between these two dates?
3
votes
1answer
120 views
Calculate the first day of a calendar week [C++]
I need to calculate the date of the first day in a calendar week, e.g.
Week 1 in 2009 -> Mon, 29.12.2008 (!)
Week 44 in 2009 -> Mon, 26.10.2009
I have some ugly code for this, bu …
