Hi all,
due a recent update to 10g Oracle, the application doesn't seem to be working properly.
CREATE OR REPLACE PROCEDURE INS_APPL (
P_QTY IN DECIMAL,
P_NAME IN VARCHAR2)
I've always passed in String for both the variables and it has been working fine with the previous version. i.e. the Stored Procedure is able to convert the String value ("123.1234") to decimal (123.1234).
Now, pass in String is the same, but the decimal value (123).
Any comment. Any reason why in oracle 10g, it is unable to interpret it like the previous version. I can't change the Stored Procedure as it is fully owned by another company. How to work around it?
Urgently need responses.
due a recent update to 10g Oracle, the application doesn't seem to be working properly.
CREATE OR REPLACE PROCEDURE INS_APPL (
P_QTY IN DECIMAL,
P_NAME IN VARCHAR2)
I've always passed in String for both the variables and it has been working fine with the previous version. i.e. the Stored Procedure is able to convert the String value ("123.1234") to decimal (123.1234).
Now, pass in String is the same, but the decimal value (123).
Any comment. Any reason why in oracle 10g, it is unable to interpret it like the previous version. I can't change the Stored Procedure as it is fully owned by another company. How to work around it?
Urgently need responses.