I was working on a page today and using a function in queryhelper to join two queries together.
<cfset prc.qry5 = getPlugin(“QueryHelper”).doLeftOuterJoin(prc.PositionList, tbl_fpt, ‘strValue’, ‘pos_id’)>
The join completed fine but I got this error on the page:
The web site you are accessing has experienced an unexpected error.
Please contact the website administrator.
The following information is meant for the website developer for debugging purposes.
Error Occurred While Processing Request
The value ‘’ cannot be converted to a number.
The error occurred in C:/wamp/www/coldbox/system/includes/panels/CollectionPanel.cfm: line 38
Called from C:/wamp/www/coldbox/system/includes/Debug.cfm: line 276
Called from C:/wamp/www/coldbox/system/web/services/DebuggerService.cfc: line 230
Called from C:/wamp/www/coldbox/system/Coldbox.cfc: line 367
Called from C:/wamp/www/WMT_PROD/Application.cfc: line 44
36 : <!--- Max Display For Queries --->
37 : <cfif isQuery(varVal) and (varVal.recordCount gt getDebuggerConfig().getmaxRCPanelQueryRows())>
38 : <cfquery name="varVal" dbType="query" maxrows="#getDebuggerConfig().getmaxRCPanelQueryRows()#">
39 : select * from varVal
40 : </cfquery>
There are 816 records total in that join and I guess if you double that you get 1632 total records on the page.
When I comment out the join, the page works as normal.
I have never seen this error before. I was trying to join the results of a stored-procedure the results from another table. I was hoping to join these tables without having to fool with the stored procedure.
Am I hitting a limit on something?