0
votes
1answer
44 views
MySQL - convert and compare dates on query
I'm working on a football site witch, along with many features, list result tables. The tables are separated between seasons (season name, etc) and rounds (witch are generated everytime a new season …
4
votes
1answer
43 views
Any C# SmartDate converters out there, e.g. “sun 11” --> 2009-12-06 11:00:00
In the spirit of not reinventing the wheel, can anyone point me to free C# code that does the following kinds of conversions?
"sun" --> 2009-12-06 00:00:00
"tom" --> 2009-12-06 00:00:00
"tomorrow" …
0
votes
2answers
58 views
NSDateFormatter: I Don’t want the time!
I am playing around with the coredatabooks source code example from the apple website, or here. I am trying to set the books copyright date attribute value to replace the author as the tableview …
0
votes
1answer
17 views
Formatting a date in my titleForHeaderInSection
Hello,
I am working on a simple to do list application, and I am wanting to set the date in a normal format in the titleForHeaderInSection part of my uiTableView. But I am having some issues. It …
1
vote
3answers
85 views
Is there a reliable way to convert unzoned datetime into UNIX time_t?
I need to convert a database column in a (MSSQL) database table into UNIX time_t. The problem is that this column does not have a timezone and some dates are from GMT (+0000) and some from BST …
0
votes
2answers
71 views
End date must be after start date (jquery for noobs)
I'm having a heck of a time wrapping my head around JQuery syntax (probably because my javascript isn't that solid to begin with). Here's my problem. I'm using datepicker on two input boxes …
2
votes
3answers
63 views
How can I store and query schedule data?
I'd like to allow my users to setup a schedule for their events. It could be a single day, or for convenience I'd like to allow them to specify a reoccurring event (similar to an Outlook appointment).
…
2
votes
5answers
103 views
How do I exclude Weekend days in a SQL Server query?
How do I exclude values in a DateTime column that are Saturdays or Sundays?
For example, given the following data:
date_created
'2009-11-26 09:00:00' -- Thursday
'2009-11-27 09:00:00' -- Friday
…
0
votes
2answers
37 views
Returning the Quarter in SQL Server
I am a complete novice at SQL Server and naively thought that there would be a QUARTER() function, alas there is not and some googling didn't come up with anything useful!
Basically what I want to …
1
vote
4answers
113 views
Array of Dates in Java
I know how to create an array of strings or integers, but how does one create an array of dates :/
-2
votes
0answers
48 views
Compare dates in Javascript [closed]
Possible Duplicates:
Compare 2 dates with JavaScript
Compare dates in Javascript
How can we compare two dates in javascript?
0
votes
3answers
47 views
Compare dates in Javascript [closed]
Possible Duplicates:
How do I compare dates in Javascript?
Compare 2 dates with JavaScript
How can we compare two dates in javascript?
0
votes
1answer
46 views
How to group items by date range in XSLT?
I have a bunch of data that looks a little like this:
<item>
<colour>Red</colour>
<date_created>2009-10-10 12:01:55</date_created>
<date_sold>2009-10-20 …
0
votes
6answers
83 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
/* ... */
$arrDates['Jan'] = 2009;
…
0
votes
1answer
11 views
How do you set a date in a mysql update from a milliseconds since epoch value?
I want to fill out some null dates with default dates, which should be the epoch date.
eg set updateDate = somethingtoconvertEpochDateToDateTime(numberofMillisSinceEpoch)
