Oracle ODP stored procedure & C#
We are in the process of transferring our C# application from using Microsoft Oracle connector to using ODP.
We are getting this error in our unit test.
ORA-06502: PL/SQL: numeric or value error ORA-06512: at line 1 but only after the stored procedure has been called a number of times. If we run each test individually they pass but if we run them all together using the same connection then the 4th or 5th call to the stored procedure fails. The iissues seems to be data related. It seems that oracle is creating some sort of defination of the SP arguements and caching it between calls and as a result when the parameters change sufficiently the call fails. Any suggestions on how to track this down would be appreciated. The0