CFLib.org – Common Function Library Project

MySQLTS2DT(timestamp)

Last updated June 27, 2002

author

Mark Andrachek

Version: 1 | Requires: CF5 | Library: DatabaseLib

Description:
Converts the passed MySQL timestamp to a ColdFusion DateTime object.

Return Values:
Returns a date/time object.

Example:

<CFSET TS = "20011211145204">

<CFOUTPUT>
Timestamp = #TS#, CF date object = #MySQLTS2DT(TS)#
</CFOUTPUT>

Parameters:

Name Description Required
timestamp MySQL time stamp. Yes

Full UDF Source:

/**
 * Converts a MySQL timestamp to a CF DateTime object.
 * 
 * @param timestamp      MySQL time stamp. (Required)
 * @return Returns a date/time object. 
 * @author Mark Andrachek (hallow@webmages.com) 
 * @version 1, June 27, 2002 
 */
function MySQLTS2DT(timestamp) {
    return CreateDateTime(Left(timestamp,4),Mid(timestamp,5,2),Mid(timestamp,7,2),Mid(timestamp,9,2),Mid(timestamp,11,2),Mid(timestamp,13,2));
}

Search CFLib.org


Latest Additions

Raymond Camden added
QueryDeleteRows
November 04, 2017

Leigh added
nullPad
May 11, 2016

Raymond Camden added
stripHTML
May 10, 2016

Kevin Cotton added
date2ExcelDate
May 05, 2016

Raymond Camden added
CapFirst
April 25, 2016

Created by Raymond Camden / Design by Justin Johnson