Steven Erat:
Have you tried using javacast() when adding data to an IMQ when using the QuerySetCell() function? javacast will set the type as you like when the data is added. Make sure that you cast all data for a given column to the same type. I believe that ColdFusion assesses more than one row of data in a given column before trying to assign a type to it. I'll check on that. net.Det:
Have the same prob: QoQ runs fine under 5.0, but crashes under 6.1: Hope that there is a hotfix soon. darren:
here's an example of how I coded the javaclass() function during the building of the initial query to work around the query of queries runtime error. just in case someone was wondering. CFSET temp = QuerySetCell(SortReport, "fld_report_id", "#javacast('String',qTank_report.fld_report_id)#", #qESN.currentrow#) I did this for every setcell.
Post a comment
|
||||||||||||
I just ran into that exact situation. It would be kinda nice to be able to tell CF what type you want each column to be rather than have it guess.