Execution Issue with callproc() with IN parameters #238
Replies: 1 comment 2 replies
-
Can you supply an actual complete example that demonstrates the problem? Include the SQL that you used to create the procedure and the table and the insert statements to populate that table. Note that Test case 1301 in the test suite does pretty much exactly what you are doing and it works fine! |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
I have procedure created in Oracle database which looks similar to this sample -
When I executed this code, it kept running without any errors or results being returned -
Interestingly, callproc() worked fine when I removed the IN parameter from the procedure and just kept the OUT parameter. It returned the all the records of MyTable without any problem. This problem comes up if I have any IN parameter in the procedure.
I have tried all these options that I could find on the internet but none of them worked for me
Let me know if you need more information. Thank you in advance!
Beta Was this translation helpful? Give feedback.
All reactions