I have an error that keeps popping up in my application log file every now and then.
"Error","jrpp-2297","09/30/09","07:40:07","appname","Invalid data for CFSQLTYPE CF_SQL_BIGINT. The specific sequence of files included or processed is: E:\inetpub\wwwroot\a\viewReport.cfm, line: 56 "
Is there any way that I can trap all parameters passed to this page via the form so I can see why that specific value is failing? When I try it from the website it processes fine.
Thanks!
If you want to do some longer term watching of the data for this form, then you can use cfdump with some optional parameters to keep an eye on things:
If you want a plain text dump instead of the normal fancy HTML one:
The fullpathtyourdumpfile should be the fully qualified path (including drive letter if using Windows as your CF platform) to a file, including file name. Examples:
Use .txt for plain text dumps and .html for the HTML version. If you use the HTML version, you should be able to use remote file retrieval or have the directory mounted to see the contents.
In addition, you need to make sure that every directory listed exists and is read and writable by the user running ColdFusion.
UPDATE
For CFMX7, try this workaround: