Hi,
I just converted a 3.x project to 4.1.3 using Studio. The project
was converted successfully. I have a page which executes a DO in the
onBeforeDisplayEvent(). The DO has 2 parameters as input and one for
output. But when the DO is executed i get this error , [SERVERERROR]
Error from Server: ORA-01426: numeric overflow . It does not come
consistently with the same values. This error is "erratic" and i get it
for cases which were executed to perfection the previous time!
I'm also pasting the part of code where the DO is being executed.
This code is working fine with 3.x.
CSpProcedure doGetScore = (CSpProcedure)
CSpider.getDataObject("doGet_Score");
doGetScore.clearAllValues();
doGetScore.setValue("I_REGIONID", new CSpInteger(li_RegionID));
doGetScore.setValue("I_PAID", new CSpInteger(li_PaID));
command = doGetScore.execute();
if (doGetScore.succeeded() && (command != STOP_PROCESSING))
{
............
// the output parameter is got here
lf_Score =
doGetScore.getValue(0,"OUT_I_SCORE").floatValue();
............
}
else
{
throw new Exception();
}
I dont have any idea as to where and what has gone wrong.
Thanks in advance for any help recieved.
Swaroop
_________________________________________________________________________
For help in using, subscribing, and unsubscribing to the discussion
forums, please go to: http://www.netdynamics.com/support/visitdevfor.html
For dire need help, email: [EMAIL PROTECTED]