Ask Ben: Appending Times To Date/Time Objects

<!--- Create a date/time as a string object. --->
<cfset dtThree = (
	DateFormat( dtNow, "yyyy-mm-dd" ) & 
	" " & 
	"18:00:00"
	) />
 
<!--- Dump out result. --->
<cfdump var="#CreateODBCDateTime( dtThree )#" /><br>

For Cut-and-Paste