Tagged Questions

1
vote
1answer
39 views

Groovy date formatting problem

Hi! I am developing a groovy application and I am having problems when showing a Date field. If I use the following notation: <g:formatDate format="dd.MM.yyyy" date="${fieldValue(bean: …
0
votes
4answers
145 views

MySQL/PHP update query with dates not updating

Bit of a strange problem here... I've got an update query that isn't working, and I can't for the life of me work out why! My table has two three fields - 'id' (int, auto increment), 'date' (date), …
2
votes
8answers
1k views

Displaying proper date format depending on culture.

I am using a control for a popup calendar date picker. This uses a javascript function, SetText, to set the textbox to the given date. I can't change anything in the calendar control itself but I …
1
vote
1answer
83 views

php/mysql - date_format and the time portion

Apologies if this has already been answered many times, but I was unable to find the answer and I was flummoxed. I have a mysql query which seemingly outputs the result I want when I run it in the …
2
votes
1answer
105 views

How to optimize mysql date_format() for speed in where clause?

Hi guys, I'm trying to optimize relatively big mysql (myisam) table with 220,000 rows. The table itself is not so big - about 23.5MB in size. So, what's the real problem? - i got query like this: …
0
votes
2answers
424 views

Proper DateTime Format for a Web Service

I have a webservice with a method which is called via a xmlhttprequest object in my javascript. The method accepts a datetime parameter which is subsequently converted to a string and run against the …
2
votes
4answers
2k views

How do you globally set the date format in ASP.NET?

How do you globally set the date format in ASP.NET? My local machine and servers have Regional Settings set to "English (New Zealand)". When I format a date with "dd/MM/yyyy" I expect to see …
0
votes
3answers
804 views

I need to change the date format using php.

Hi I have looked at a question already posted about this and tried to adapt my code to do a simlar thing. Basicly I have a field in my mysql database that has the date in this format yyyy-dd-mm i need …
2
votes
4answers
875 views

How do I trim date in PLSQL?

I have a date variable as 24-dec-08 I want only the 08 component from it. How do I do it in a select statement? e.g.: select db||sysdate (this is the component where I want only 08 from the date) …
2
votes
9answers
4k views

SQL date format issue in select query

I have an ASP page which will fetch records from a SQL server DB table. The table "order_master" has a field called order_date. I want to frame a select query to fetch order date > a date entered by …
3
votes
6answers
1k views

What is the best way to parse a date in MM/DD/YY format and adjust it to the current / previous century?

One of our customers wants to be able to enter a date with only 2 digits for the year component. The date will be in the past, so we want it to work for the previous century if the 2 digit year is …
1
vote
2answers
334 views

How can I remotely (via web services) determine date format of SharePoint 2003 site, for use in Versions.asmx returned XML?

The GetVersions() call to the Versions.asmx web service in SharePoint 2003 returns a localised date format, with no way of determining what the format is. It's the site regional setting of date …