Thanks for your reply, Benjamin, but I am not using any session or (at this point) application variables. I have this line in the top-level application.cfm: <CFAPPLICATION NAME="AffiliateProgram" CLIENTMANAGEMENT="No" SESSIONMANAGEMENT="No" APPLICATIONTIMEOUT=#CreateTimeSpan(7,0,0,0)#> The code that's breaking is in a subdirectory with a very simple application.cfm that only consists of a few CFSETs, only the one template with the code shown below causes problems so it doesn't seem likely that either application.cfm could be the source of the problem. Any other ideas? Regards, Karl Simanonok At 10:59 PM 5/6/2001 -0400, you wrote: >Date: Sun, 06 May 2001 17:25:51 -0400 >From: "Benjamin S. Rogers" <[EMAIL PROTECTED]> >To: [EMAIL PROTECTED] >Subject: RE: unknown exception condition >Message-ID: <[EMAIL PROTECTED]> > >My experience with "CFMLInterpreterImp" error messages is that they are >usually the result of unlocked access to shared scope data (e.g. Session >variables, Application variables, etc.). These can be very troublesome since >the error messages usually point to some innocuous piece of code rather than >the offending code. They behave in an erratic, though repetitive manner that >you've described. > >I haven't seen the "writeEmergencyMessage" flavor, itself, but my suggestion >would be to look over all the code on the server in question and see if you >can't track down locking issues. For us, it became too problematic to use >Session variables that we inevitably had to switch to Client variables >stored in a database. > >Benjamin S. Rogers >Web Developer, c4.net >Voice: (508) 240-0051 >Fax: (508) 240-0057 > >-----Original Message----- >From: Karl Simanonok [mailto:[EMAIL PROTECTED]] >Sent: Sunday, May 06, 2001 4:30 PM >To: CF-Talk >Subject: unknown exception condition > > >This code causes problems: > ><CFQUERY NAME="UpdateDetailRecord" DATASOURCE="#DataDB#"> > UPDATE Product > SET > PartNo = '#Trim(FORM.PartNo)#', > UPCNo = '#Trim(FORM.UPCNo)#' > WHERE ProductID = #FORM.ProductID# ></CFQUERY> > >Sometimes it produces no errors, but about half the time I get errors back >like this: > >Error Occurred While Processing Request >Error Diagnostic Informationunknown exception condition >CFMLInterpreterImp::writeEmergencyMessage Date/Time: 05/06/01 16:19:10 >Browser: Mozilla/4.0 (compatible; MSIE 5.5; Windows 98; BCD2000) >Remote Address: 64.135.30.238 > >The datasource name is set in application.cfm and is 942_autoparts. > >Can you see anything wrong with this simple update query? All the form >variables are present, I'm thinking maybe there's a reserved-word problem >but I don't know what it could be. I'd sure appreciate any help on >this. I get the same kind of errors on 3 different machines with this >code, it's not a corrupted executable ColdFusion code problem. > >Regards, > >Karl Simanonok Archives: http://www.mail-archive.com/[email protected]/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

