Re: / by zero error

2008-09-23 Thread Shannon Peevey
It looks to me as if your session timeout variable is empty, causing the : java.lang.ArithmeticException: / by zero at coldfusion.util. CaseInsensitiveMap.findStringKey(CaseInsensitiveMap.java:122) at coldfusion.runtime.CfJspPage._emptyTag(CfJspPage.java:2644) at cfApplic

Re: / by zero error

2008-09-23 Thread Shannon Peevey
It looks to me as if your session timeout variable is empty, causing the : java.lang.ArithmeticException: / by zero at coldfusion.util. CaseInsensitiveMap.findStringKey(CaseInsensitiveMap.java:122) at coldfusion.runtime.CfJspPage._emptyTag(CfJspPage.java:2644) at cfApplic

Re: / by zero error

2008-09-23 Thread Scott Taylor
I did try hardcoding the createtimespan, and output the variable - same either way. Here's the stack trace: java.lang.ArithmeticException: / by zero at coldfusion.util.CaseInsensitiveMap.findStringKey(CaseInsensitiveMap.java:122) at coldfusion.util.FastHashtable.find(FastHashtab

Re: / by zero error

2008-09-23 Thread Shannon Peevey
t; > > - Original Message - > From: "Scott Taylor" <[EMAIL PROTECTED]> > To: "CF-Talk" > Sent: Tuesday, September 23, 2008 10:17 AM > Subject: Re: / by zero error > > > >I should have put this in the OP. Both apps run on the same mac

Re: / by zero error

2008-09-23 Thread Josh Nathanson
Could you try hardcoding the CreateTimeSpan(0,2,0,0) into the cfapplication tag, and at least see if that works? -- Josh - Original Message - From: "Scott Taylor" <[EMAIL PROTECTED]> To: "CF-Talk" Sent: Tuesday, September 23, 2008 10:17 AM Subject: Re: /

Re: / by zero error

2008-09-23 Thread Scott Taylor
I should have put this in the OP. Both apps run on the same machine. The code that works is only very slightly modified and has the same cfapplication tag in it, and sets the variable ThisSessionTimeout exactly the same way. Scott >Just reaching, but are the operating systems the same on both

Re: / by zero error

2008-09-23 Thread Shannon Peevey
roblems. In the other, I get a '/ by zero' > error when coming into the app. Both set session variables and a timeout in > exactly the same manner. > > Here's a little bit of the error: > > / by zero > > The error occurred in > \\ikraid\ikweb\RmsLive\Applica

/ by zero error

2008-09-23 Thread Scott Taylor
I have two applications running on CF8 Enterprise in a multiple-instance cluster. In one, I have no problems. In the other, I get a '/ by zero' error when coming into the app. Both set session variables and a timeout in exactly the same manner. Here's a little bit of the er

RE: CFChart divide by zero error

2007-08-27 Thread Brad Wood
: Monday, August 27, 2007 5:01 PM To: CF-Talk Subject: RE: CFChart divide by zero error I had a similar problem with a chart once that puked this error under certain conditions. Try resizing it, say 25% larger height & width. See if resizing it magically fixes it. My problem was caused (I think) by

RE: CFChart divide by zero error

2007-08-27 Thread Raster, Tim
mall area. -Original Message- From: Tom McNeer [mailto:[EMAIL PROTECTED] Sent: Monday, August 27, 2007 4:53 PM To: CF-Talk Subject: CFChart divide by zero error Hi, Using the charting application on CF 7.02, I receive a "divide by zero" error that appears to bubble up from Ja

CFChart divide by zero error

2007-08-27 Thread Tom McNeer
Hi, Using the charting application on CF 7.02, I receive a "divide by zero" error that appears to bubble up from Java or at least WebCharts3D (since it doesn't have the usual CF error information). It occurs under very specific conditions (at least in my application), and

RE: divide by zero error

2005-03-23 Thread Eric J. Hoffman
est a hard-copy version. From: Jochem van Dieten [mailto:[EMAIL PROTECTED] Sent: Wed 3/23/2005 2:50 PM To: CF-Talk Subject: Re: divide by zero error Eric J. Hoffman wrote: SELECT DISTINCT customer.id as cid, customer.business, customer_orders.

Re: divide by zero error

2005-03-23 Thread Jochem van Dieten
Eric J. Hoffman wrote: > looks perfect SQL, thats what freaks me. > example: customer_contact.phone LIKE '%952%' OR customer_contact.phone LIKE > '%651%' > so that makes that line: AND (customer_contact.phone LIKE '%952%' OR > customer_contact.phone LIKE '%651%' ) It is correct SQL until yo

RE: divide by zero error

2005-03-23 Thread Eric J. Hoffman
ision anywhere and a big ugly query. CF Error, and if I take out my ugly workaround for zipcode or areacode it works fine. DIAGNOSTIC: Error Executing Database Query. [Macromedia][SQLServer JDBC Driver][SQLServer]Divide by zero error enc

Re: divide by zero error

2005-03-23 Thread Jochem van Dieten
Eric J. Hoffman wrote: SELECT DISTINCT customer.id as cid, customer.business, customer_orders.id, SUM (customer_orders_prod.qty) as totunits FROM customer_orders JOIN customer on customer.id = customer_orders.customer_id JOIN customer_contact on customer.id = customer_contact.cu

RE: divide by zero error

2005-03-23 Thread Adrian Lynch
Output #sql1# and #sql2# and see what it looks like. Ade -Original Message- From: Eric J. Hoffman [mailto:[EMAIL PROTECTED] Sent: 23 March 2005 20:30 To: CF-Talk Subject: RE: divide by zero error no, no result setsjust outputtingit dies exactly in the query where I reference

Re: divide by zero error

2005-03-23 Thread David Fafard
I do not see any division in sql but this may help... ( [num] / ( case [divider] when 0 then NULL else [divider] end)) Dave - Original Message - From: "Adrian Lynch" <[EMAIL PROTECTED]> To: "CF-Talk" Sent: Wednesday, March 23, 2005 3:26 PM Subject: RE: d

RE: divide by zero error

2005-03-23 Thread Eric J. Hoffman
ission. If verification is required please request a hard-copy version. From: Adrian Lynch [mailto:[EMAIL PROTECTED] Sent: Wed 3/23/2005 2:26 PM To: CF-Talk Subject: RE: divide by zero error Also, what are you doing with the resultset? Are you doing ANY calculat

RE: divide by zero error

2005-03-23 Thread Eric J. Hoffman
yeah, no division and a big ugly query. CF Error, and if I take out my ugly workaround for zipcode or areacode it works fine. DIAGNOSTIC: Error Executing Database Query. [Macromedia][SQLServer JDBC Driver][SQLServer]Divide by zero error encountered. The error occurred on line 127

RE: divide by zero error

2005-03-23 Thread Adrian Lynch
Also, what are you doing with the resultset? Are you doing ANY calculations? Ade -- No virus found in this outgoing message. Checked by AVG Anti-Virus. Version: 7.0.308 / Virus Database: 266.8.0 - Release Date: 21/03/2005 ~| Fi

RE: divide by zero error

2005-03-23 Thread Adrian Lynch
-Talk Subject: RE: divide by zero error its ugly because I couldn't get the loops to work inside the sql...suggestions also welcomed. :) Select DISTINCT customer.id as cid, customer.business, customer_orders.id, SUM (customer_orders_prod.qty) as totu

RE: divide by zero error

2005-03-23 Thread Eric J. Hoffman
ts of this message, which arise as a result of e-mail transmission. If verification is required please request a hard-copy version. From: Adrian Lynch [mailto:[EMAIL PROTECTED] Sent: Wed 3/23/2005 2:12 PM To: CF-Talk Subject: RE: divide by zero error Is it a

Re: divide by zero error

2005-03-23 Thread Jochem van Dieten
Eric J. Hoffman wrote: > > Can anyone identify where to look in this instance? > Select > DISTINCT customer.id as cid, > customer.business, > customer_orders.id, > SUM (customer_orders_prod.qty) as totunits > FROM customer_orders > JOIN customer on customer.id = customer_orders.customer_i

Re: divide by zero error

2005-03-23 Thread Charlie Griefer
would be better to show your SQL with the CF variables rather than the end SQL result. On Wed, 23 Mar 2005 14:05:22 -0600, Eric J. Hoffman <[EMAIL PROTECTED]> wrote: > Overview: run a cold fusion query against a datasource. Get a divide by > zero error. Take that query in SQL Qu

RE: divide by zero error

2005-03-23 Thread Adrian Lynch
ct: divide by zero error Overview: run a cold fusion query against a datasource. Get a divide by zero error. Take that query in SQL Query analyzer and type in the query substituting values and it works fine. All values being input by cold fusion appear correct as well. Can anyone identify whe

divide by zero error

2005-03-23 Thread Eric J. Hoffman
Overview: run a cold fusion query against a datasource. Get a divide by zero error. Take that query in SQL Query analyzer and type in the query substituting values and it works fine. All values being input by cold fusion appear correct as well. Can anyone identify where to look in this

RE: division by zero error?

2000-09-15 Thread David E. Crawford
This is a multi-part message in MIME format. --=_NextPart_000_009B_01C01F38.A0432B00 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit division by zero error?This right here: #dateformat(Now(), 'mm/dd/yy')#, Is what is causing your

Re: division by zero error?

2000-09-15 Thread Kevin Schmidt
ROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, September 15, 2000 11:39 AM Subject: division by zero error? > Can anyone tell me what may be causing this error? > > Error Diagnostic Information > > ODBC Error Code = 22012 (Division by zero) > > [Microsoft][ODBC

Re: division by zero error?

2000-09-15 Thread Mary_Baotic
| cf-talk | || | |+---> >| || | To: [EMAIL PROTECTED]| | cc: (bcc: Mary Baotic/na/Hyperion) | | Subject:

RE: division by zero error?

2000-09-15 Thread Jay Wigginton
nal Message- > From: Terri Stocke [mailto:[EMAIL PROTECTED]] > Sent: Friday, September 15, 2000 12:40 PM > To: [EMAIL PROTECTED] > Subject: division by zero error? > > > Can anyone tell me what may be causing this error? > > Error Diagnostic Information > > O

RE: division by zero error?

2000-09-15 Thread Shane Pitts
To: [EMAIL PROTECTED] Subject: division by zero error? Can anyone tell me what may be causing this error? Error Diagnostic Information ODBC Error Code = 22012 (Division by zero) [Microsoft][ODBC Microsoft Access 97 Driver]Division by zero (null) I am not performing any mathematical operations, no

Re: division by zero error?

2000-09-15 Thread Terri Stocke
t; <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: division by zero error? Date: Fri, 15 Sep 2000 16:39:52 GMT Can anyone tell me what may be causing this error? Error Diagnostic Information ODBC Error Code = 22012 (Division by zero) [Microsoft][ODBC Microsoft

division by zero error?

2000-09-15 Thread Terri Stocke
Can anyone tell me what may be causing this error? Error Diagnostic Information ODBC Error Code = 22012 (Division by zero) [Microsoft][ODBC Microsoft Access 97 Driver]Division by zero (null) I am not performing any mathematical operations, nor do I have anything in my CF code that would cause