Query of Queries Runtime Error
I just moved an application from CF 7 to CF8. Just about everything is working dandy, except for one error so far that has me flummoxed.
Query of Queries runtime error
Unsupported SQL type java.sql.Types.UNKNOWN
My query is as follows:
<cfquery name="GetUnique" dbtype="query">
SELECT DISTINCT ICD9
FROM GetAll
</cfquery>
For clarification, I run a fairly complex query to retrieve a list of ICD9 codes for a given person in GetAll. Then I extract a DISTINCT list of those codes using the query above. And yes, there are reasons why I cant do this in a single query....
The above query works perfectly in CF7, and has been working for years. In my Google search, I have found a few instances where people are asking questions about the error, but I have yet to find a solution.
Any clues?
