Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How do I most easily convert a SQL datetime string ("YYYY-MM-DD HH:MM:SS") to Javascript Date Object and vice versa while using Javascript?

It appears there's a jungle of cumbersome 'home brew solutions' out there, but isn't there a pre-packaged library or something that does this a lot faster and easier than any one of us can say hoechsgeschwindigkeitsbegrenzung?

I am basically storing SQL datetimes in the database, but I want to read and manipulate the SQL datetime string using Javascript and then later converting it back to SQL datetime string which I can store in my database again.

share|improve this question
1  
What have you tried so far? – drrcknlsn Nov 10 '12 at 17:01
I am looking at the datejs library primarily right now. Are there better ones? – alieninlondon Nov 10 '12 at 18:55

closed as not a real question by Salman A, kprobst, Praveen Kumar, CoolBeans, Gaby aka G. Petrioli Nov 10 '12 at 20:26

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

The date methods from Kelvin Luck are a very neat and, when minified or packaged, a very lightweight and standalone solution.

There's no standard library, in the same way that there are no packaged libraries for JavaScript due to its reliance on the ECMA Script standards used to write browsers' JavaScript engines.

Incidentally the format you have specified will very easily convert into a Date object:

var date = new Date('2012-11-10 15:16:17');

The methods in the package above allow you to use the Date.asString() method specifying a format parameter. It uses built in linked-lists to provide month and day names as well.

This method of creating a date object is valid according to Mozilla's JavaScript reference. Specifically:

Starting with JavaScript 1.8.5 (Firefox 4), a subset of ISO 8601 is supported. For example, "2011-10-10" (just date) or "2011-10-10T14:48:00 (date and time) can be passed and parsed.

share|improve this answer
Using that piece of code is not allowed I think. Check this link. I'll have to look into that library by Kelvin. Do you know how it compares to the datejs library ? (I just came across that) – alieninlondon Nov 10 '12 at 18:53
I've not used datejs, I guess it depends on features vs size, Kelvin's date methods are very slim line and the code is well structured. I maintain the datepicker plugin associated with his date methods and it's very flexible code. – M1ke Nov 13 '12 at 17:57
Also the code I posted is valid, I'll edit my answer. – M1ke Nov 13 '12 at 17:59

I had this same problem so I created a function that converts a JavaScript date into a format that could be understood by SQL Server e.g.

var TRON = TRON || {};

// format a date into dd-mm-yyyy
// or mm-dd-yyyy cos of sql database
// saving dates in USA format
// @param {Date object|string} date
// @param {string} format
// @return {string} formattedDate
TRON.formatDate = function (date, format){

 // if we get passed a date string convert it
 // into an object
 if(/Date/.exec(date)){
  date = new Date(/[0-9]+/.exec(date) * 1);
 } else if(typeof date == 'number'){
  date = new Date(date);
 }

 var    dd = date.getDate() > 9 ? date.getDate() : '0' + date.getDate(),
        mm = date.getMonth() > 10 ? (date.getMonth() + 1) : '0' + (date.getMonth() + 1),
        yyyy = date.getFullYear().toDoubleDigits(),
        formattedDate;

 if(format == 'usa'){
  formattedDate = [mm, dd, yyyy].join('/');
 } else if (format == 'system'){
  // for inserting into sql db
  formattedDate = [yyyy, mm, dd].join('-') + ' ' + [ date.getHours().toDoubleDigits(), date.getMinutes().toDoubleDigits(), date.getSeconds().toDoubleDigits() ].join(':');
 } else if (format == 'utc'){
        formattedDate = new Date(date.getUTCFullYear(), date.getUTCMonth(), date.getUTCDate(),  date.getUTCHours(), date.getUTCMinutes(), date.getUTCSeconds());
 } else {
  formattedDate = [dd, mm, yyyy].join('/');
 }

 return formattedDate;
};


$.post(url, { date: TRON.formatDate( jsDate, "system" ) });

db.Execute("INSERT INTO Table (date) VALUES (@0)", Request["date"]);

The rest of my JavaScript utility scripts are on BitBucket

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.