we are currently using cfspreadsheet to process excel spreadsheets that are being imported into our app.
At present we dont have an easy way of validating the data types that are imported from the data as we are trying to work with a QoQ object after we have the spreadsheet in memory.
Is there any sort of easy way to loop over a query object to detect the data types for each column in the query dataset ?
<cfspreadsheet action="read" src="#form.uploadedFile#" query="mycontent" headerrow="1" excludeheaderrow="yes">
<cfquery name="mycontent" dbtype="query">
SELECT *
FROM mycontent
</cfquery>
Ive tried looking for meta data functions for queries, but cant seem to find any