query of query errors
java.lang.String cannot be cast to java.util.Date
But the output format is correct and is in date. This application was developed in coldfusion 6.1 and sqlserver2000. But now we get this error when it was migrated to coldfusion 8 and sql server 2005.
Below is the query block. There error comes in the select statement.
if (NOT IsDefined("URL.sOrderBy")) URL.sOrderBy = "dtStartDate";
if (NOT IsDefined("URL.sOrderType")) URL.sOrderType = "DESC";
</cfscript>
<cftry>
<!--- Query of a query --->
<cfquery name="Variables.qSearchProjects" dbtype="query">
SELECT *
FROM qCombinedProjects
ORDER BY #URL.sOrderBy# #URL.sOrderType#;
</cfquery>
<cfcatch>
<!--- Order the projects by start date --->
<cfquery name="Variables.qSearchProjects" dbtype="query">
SELECT *
FROM qCombinedProjects
ORDER BY dtStartDate DESC;
</cfquery>
</cfcatch>
</cftry>
dtstartdate is in date format. Please help as this really urgent



