0
votes
2answers
42 views
How to get difference between two days in iPhone
Hi All,
I would like to calculate the no of days,hours,minutes between two different dates in iPhone(Objective C). Please provide any code sample to do the same.
Thanks
Sandeep
0
votes
2answers
19 views
How to delete records base on a date and offset
I need to delete records in a table if the current date is greater than the record creation date + a preset number of days (defined by @numberOfDays). I am using the following SQL statement but am not …
1
vote
5answers
377 views
What is the precise definition of JDE’s Julian Date format?
I am writing code to convert from a Gregorian date to a JDE (J.D.Edwards) Julian date.
Note: a JDE Julian date is different from the normal usage of the term Julian date.
As far as I can work out …
4
votes
10answers
12k views
Batch file to delete files older than N days
I am looking for a way to delete all files older than 7 days in an MS-DOS batch file. I've search around the web, and found some examples with hundreds of lines of code, and others that required …
0
votes
1answer
48 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 …
2
votes
4answers
1k views
How do I calculate the previous business day in ksh shell script ?
What is the most elegant way to calculate the previous business day in shell ksh script ?
What I got until now is :
#!/bin/ksh
set -x
DAY_DIFF=1
case `date '+%a'` in
"Sun")
DAY_DIFF=2
;;
…
4
votes
1answer
44 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" …
4
votes
5answers
2k views
Calculate business days in PHP
Hi,
I need a method for adding "business days" in PHP. For example, Friday 12/5 + 3 business days = Wednesday 12/10.
At a minimum I need the code to understand weekends, but ideally it should …
0
votes
2answers
69 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 …
1
vote
3answers
92 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
1answer
18 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 …
0
votes
2answers
72 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
69 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).
…
6
votes
7answers
1k views
Best approach to remove time part of datetime in SQL Server
Which method provides the best performance when removing the time portion from a datetime field in SQL Server?
a) select DATEADD(dd, DATEDIFF(dd, 0, getdate()), 0)
or
b) select …
2
votes
5answers
117 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
…
