date

OWC11 Date Formatting Ignored

I am creating an Excel document using owc11. I am providing the dates in dd/mm/yyyy format. I am doing something like this in the code: for (..looping through results..) { Range c = EmailStats.putCellValue(sheet, row, 1, val); c.set_NumberFormat("dd/mm/yyyy"); } private static Range putCellValue(Worksheet sheet, int row, int co...

How to make date.getTime() returns UTC time?

I have a Date object which represents a UTC time. When I use the method getTime() to get the long value of this object, the value returned corresponds to our local time (central US). What is the correct way to get the value back which corresponds to the original UTC time? Thanks ...

SQL Server Date Settings

We have recently moved some data from an SQL Database instance to another one in another location. I seemed to have noticed that there are some facets of our old database instance where the date is passed as String to the SQL server and SQL server is able to parse it properly. For example, the application would simply pass a string val...

Java SimpleDateFormat and compareTo

Hi, I've got a question about SimpleDateFormat class and the java.util.Date's compareto method: I'm constructing a Date object, then I format, finally I parse the formatted string and compare to the original date. DateFormat df = new SimpleDateFormat("yyyy.MMMdd hh:mm:ss SSS"); Date originalDate = new Date(); String s = df.format(or...

Storing annually repeatable values in a MySQL database

I've been hammering my head against my desk for the past few days on this, and so I turn to you, Stack Overflow. The software I'm working on has time-sensitive data. The usual solution for this is effective and expiration dates. EFF_DT XPIR_DT VALUE 2000-05-01 2000-10-31 100 2000-11-01 (null) 90 This would be easy. ...

Format Date in Jtable/ResultSet

I am having trouble displaying Dates in the format I want in my JTable. My JTable has been created using a ResultSet and lists. I tried the following in getValueAt(.) but no luck: if(value instanceof Date) { //System.out.println("isDate"); DateFormat formatter = DateFormat.getDateInstance(); ...

display array of dates as 12 month view

i work with php/Mysql i have table with two cols (date , cash) with values like {7/2001:100$, 12/2001:50$ , 1/2002:30$ , 5/2002:90$ , 6/2003:80$,9/2003:20$ } i would like to make cash flow table that have cols (Jan,Feb,Mar,............Dec) and row for every year in the date array and the value of cash in the table cells like blow . Ho...

Does anyone know how to get the local date and time from Android 2.1 device?

Does anyone know know how to programatically get the local date and time of the Android device? With that local date and time, does anyone know how to convert that to milliseconds from 1970 in UTC time? ...

How can I set default today date using datepicker with jQuery?

I am using the jQuery datepicker(http://keith-wood.name/datepick.html) and I would like to set today's date on the calendar to a date of my choosing that never changes rather than take the system date as today's date. How can I set that up? ...

Why do my Wordpress comments have the wrong date?

Currently, every comment has the same date as the original post. Theme functions PHP: <div class="comment-meta commentmetadata"> <?php comment_author_link() ?><?php _e('&nbsp;said:&nbsp;','my-theme-here');?> <?php comment_date(__('Y.m.d','my-theme-here')) ?>&nbsp;<?php comment_time(__('H:i','my-theme-here')) ?> </div> Any thoughts? ...

How can I convert a php timestamp to the same format as new Date() in javaScript?

I have a time stamp I created with PHP that I would like to convert to the same format as new Date() in javaScript. Here's my code: $current_timestamp = time(); //This returns a value such as 1268214657 I need to create a string using that timestamp that looks like this: Fri Mar 12 2010 01:50:33 GMT-0800 (Pacific Standard Time). ...

Converting time to Military

Maybe I'm seeing things.. In an attempt to turn a date with a format of "mm/dd/yyyy hh:mm:ss PM" into military time, the following replacement of a row value does not seem to take. Even though I am sure I have done this before (with column values other than dates). Is there some reason that row["adate"] would not accept a value assigne...

How to create TIMESTAMPS for SQL query for it to be sortable by date from PHP?

How to create TIMESTAMPS for SQL query for it to be sortable by date from PHP? So I have table created by such SQL script CREATE TABLE `Keys` ( `ID` INT NOT NULL AUTO_INCREMENT PRIMARY KEY , `KEY` INT NOT NULL , `TIMESTAMP` DATE NOT NULL , UNIQUE ( `KEY` ) ) What sript should I write to: Add timestamps To sort\search thru that ...

Convert seconds to Days, Minutes and Seconds.

Hey everyone. I've continuing to learn C++ and I've been set the 'challenge' of converting seconds to format as the Days,Minutes and Seconds. For example: 31600000 = 365 days, 46 minutes, 40 seconds. using namespace std; const int hours_in_day = 24; const int mins_in_hour = 60; const int secs_to_min = 60; long input_seconds; cin >> in...

ATOM date format to UNIX in PHP

So this cant be too difficult, I need a feed date/time converted into a unix timestamp in PHP. from "2010-04-13T10:00:00.000-04:00" -> Unix I have been trying all sorts of weird things with date() and strtotime() with no luck. Thank you! ...

SQL Query to check ALL days exist between a date range

Hi, I have a table of Prices with a start date, end date and price. I want a search to pass in a date range and return whether a price exists for all days in that range. The date range can span multiple prices, just not have any gaps in between. Is this possible? Prices startDate datetime endDate datetime price DECLARE @startDate dat...

javascript date works in all browsers except iPhone/iPod Touch.

I've got some code to work with dates in javascript. This works in IE, FF, Safari (desktop versions win & mac), Chrome, Opera. In iPhone safari (mobile safari), i get a 'invalid date' response. The code for managing dates is function fixDateFormat(dateText){ var isoExp = /^\s*(\d{4})-(\d\d)-(\d\d)\s*$/, newDate = new...

MySQL Hibernate sort on 2 columns

I have a table as follows Table item { ID - Primary Key content - String published_date - When the content was published create_date - When this database entry was created } Every hour (or specified time interval) I run a process to update this table with data from different sources (websites). I want to display the results accordi...

How to create Date object from year,month,day in Java ME

We can't use java.text.SimpleDateFormat, so is there any way to create date object from year,month,day in Java ME? ...

comparing a date string to a date object in jquery

I have been passed a date string that looks like this: Thu%20Mar%2011%202010%2015%3A09%3A11%20GMT%2B0000%20(BST) I want to compare this date with today's date and hopefully ascertain whether the string above has happened yet. With my limited knowledge of jquery/javascript I wrote this: var str = new Date("Thu%20Mar%2011%202010%2015%3...