date

Why is Oracle so slow when I pass a java.sql.Timestamp for a DATE column?

I have a table with a DATE column with time (as usual in Oracle since there isn't a TIME type). When I query that column from JDBC, I have two options: Manually convert the values with Oracle's to_date() Use a java.sql.Timestamp Both approaches work and have exclusive areas of hideousness. My problem is when I'm SELECTing data. Here ...

How many weeks are inside of two dates.

I have starting dates and ending dates in my database (MySQL). How can I get the answer, how many weeks(or days) are inside of those 2 dates? (mysql or php) For example I have this kind of database: Started and | will_end 2009-12-17 | 2009-12-24 2009-12-12 | 2009-12-26 ... Update to the question: How to use DATEDIFF? How can I make ...

Parse string pattern into Date in Flex

Hi Friends, Is there some way in flex to parse strings to date. I want it to support custom formats similar to 'dateformatter'. Using 'dateformatter' class we can parse date object in various string formats as specified by 'formatString property'. I want it other way round, from string to date. The parse method 'Date.parse(my_string)' do...

C# Nearest Completed Quarter?

Is there a C# function which will give me the last day of the most recently finished Quarter given a date? For example, var lastDayOfLastQuarter = SomeFunction(jan 3, 2010); would set lastDayOfLastQuarter = Dec 31, 2009 ...

How to get Dutch locale in Dojo to work?

I need to format a date into a Dutch locale (Netherlands, Dutch language) string. I found that dojo supports this, but I can't get it to work. I am a Javascript newbie. Don't underestimate my blissful ignorence. EDITED <html> <title>title</title> <body> <SCRIPT TYPE="text/javascript" SRC="http://ajax.googleapis.com/ajax/libs/...

How can I format date by locale in Java?

I need to format date to app that has many languages, what is best way to format date, because every country has different kind of date formatting, so is it possible to format date by locale? ...

Date and timezone using j2me

Hi everyone! I have a date string as input from an rss like: Wed, 23 Dec 2009 13:30:14 GMT I want to fetch only the time-part, but it should be correct according to the my timezone. Ie, in Sweden the output should be: 14:30:14 What is the best way? I want it to work with other RSS date formats as well if possible. Im using regexp righ...

Test ascending Javascript array of Date objects

I have a javascript array of Date objects, which I'd like to test for ascendingness. This is what I built, but I am kind of disappointed by it. Any suggestion? function isAscending(timeLine) { if (timeLine.length < 2) return true; for(var i=1; i < timeLine.length; i++) { if(timeLine[i-1] > timeLine[i]) return false; ...

Check date interval with SQL Server

Hi in a stored procedure I want to select rows that are in an interval of a month where @Anno is the year of the start and @Mese is the month of the date start. I try this: WHERE FinePeriodo >= CAST((@Anno + '-' + @Mese + '-01 00:00:00') as datetime) AND FinePeriodo < DATEADD(month, 10, CAST( (@Anno + '-' ...

Detect timezone abbreviation using JavaScript

I need a way to detect the timezone of a given date object. I do NOT want the offset, nor do I want the full timezone name. I need to get the timezone abbreviation. For example, GMT, UTC, PST, MST, CST, EST, etc... Is this possible? The closest I've gotten is parsing the result of date.toString(), but even that won't give me an abbrevia...

Does PHP's date() function return the date and time on the server or on the client's computer?

Does PHP's date() function return the date and time on the server or on the client's computer? ...

How to set IDs for select elements of Quickform_date?

Is there some way to add ID attribute to every select element generated by Quickform_date so it would look for example like this? <select id="date-d" name="date[d]"> <option value="1">01</option> <option value="2">02</option> ... <option value="31">31</option> </select><select id="date-M" name="date[M]"> <option v...

In Java, how to get the difference between 2 dates in seconds?

The Java class library has a class named DateTime. DateTime has this method: int daysBetween(DateTime other) which returns the number of days between this and the parameter. It doesn't have a method int secondsBetween(DateTime other) which I happen to need. Is there a class which is similar to DateTime but has such a method? ...

[PHP]: Logic with date differences

Hi, I'm seeking an elegant solution to change the format of time based on the length of time between now, and a ISO formated date in a DB. I'd like the output to look something like this //less than an hour 'X minutes have gone by' //less than 24 hours 'X hours have gone by' //greater than 24 hours ISO date Here is what I have so fa...

What is the least number of bytes for representing date and time?

I need to transfer the current operating system's date and time up to micro-seconds accuracy from party A to party B over TCP/IP. What is the least number of bytes that can be used to represent this without sacrificing accuracy? And how to convert the date and time to your bytes format using C#? ...

Generate random date between two dates using php

I am coding an application where i need to assign random date between two fixed timestamps how i can achieve this using php i've searched first but only found the answer for Java not php for example : $string = randomdate(1262055681,1262055681); ...

PHP How to include files based on creation date?

I want to create a news page that includes a snippet of the latest 3 filea created in the following directory structure: So lets say I have the following files: /news.php /2010/the-latest-article.php /2009/some-long-article-name.php /2009/another-long-article-name.php /2009/too-old-article-name.php /2009/another-old-article-name.php I...

Wufoo date form javascript not working

Hye guys, I installed a wufoo form on one of my websites. It links to a javascript file that I have referenced from their server. The date picker is supposed to work by opening a little pop-up modal with a calendar where the user can click on a date and have the fields auto-updated. This date picker button on this site is a little calen...

YUI date slider?

Does anyone know about a YUI double-thumb slider that could be used for dates? I'd love to have a slider that lets a user select min/max date for a query. Each tick could be for the first day of the month. A user could then pick, for example, Jan 1, 2002 as a min and July 1, 2004 as a max. ...

Given a time, how can I find the time one month ago.

Given a time, how can I find the time one month ago. ...