Finding The SQL Data Type Of A ColdFusion Query Column
Sometimes CFDUMP doesn't cut it especially when you need to know the data type of the query column. The following code helps in accomplishing just that:
<!--- Dump meta data to see query column types. --->
<cfdump var="#GetMetaData( qName )#" />
Where qName is the name of the query you want to dump the mara data of.