Ask Ben: Appending Times To Date/Time Objects

<cftimer label="Three" type="outline">
	<cfloop index="intI" from="1" to="1000">
		 
		<cfset dtThree = (
			DateFormat( dtNow, "yyyy-mm-dd" ) & 
			" " & 
			"18:00:00"
			) />
		 
		<cfset WriteOutput( 
			CreateODBCDateTime( dtThree )
			) />
			 
	</cfloop>
</cftimer>

For Cut-and-Paste