Replies: 2 comments 2 replies
-
Can you supply a simple test case that demonstrates the problem? What you are describing doesn't make sense, so I'd like to know what is going on behind the scenes to make it happen! Thanks. |
Beta Was this translation helpful? Give feedback.
2 replies
-
This morning, I destroyed my CDK stack for the lambda I was using to test. Redeployed and re-typed the package name in mixed case just to be cheeky.. and it worked fine. I'll chalk that up to fatigue from working on legacy code for too long! |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I spent several hours troubleshooting why a callfunc kept failing on me with an error that the function did not exist:
ORA-06550 identifier 'package_name.function_name' must be declared".
It worked fine in thick mode not when trying thin. I took a shot in the dark and changed the package name to all upper case. So, I went from calling "package_name.function" to "PACKAGE_NAME.function" and that fixed the issue. I did not see this documented on https://python-oracledb.readthedocs.io/en/latest/user_guide/appendix_b.html but thought I'd bring it up here as a discussion point. Since I'm using this library in AWS lambda I'd rather use thin mode to keep my deploy size down. Are there any other things I might ru
Beta Was this translation helpful? Give feedback.
All reactions