-
Notifications
You must be signed in to change notification settings - Fork 79
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ORA-24960 with macOS (ARM64) client library #465
Comments
What's the exact DB version? What's your client version? Is your password actually > 1024 characters? |
Hi @cjbj. Thanks for reaching out.
Basic Package v. 23.3.0.23.09 (latest from here)
No, it is not. The same code is running without problems in a Docker container starting like this: FROM ghcr.io/oracle/oraclelinux9-python:3.12-20241217
RUN dnf -y install oracle-instantclient-release-23ai-el9 && \
dnf -y install oracle-instantclient-basiclite && \
rm -rf /var/cache/dnf |
I would expect this to be an Oracle Client issue. |
Thanks @cjbj. I just find it odd that the same client library is working for |
I tried with following configuration, and is not reproduced:
Probably, an exact db version can help us reproduce it. |
Thanks for looking into this, @hjamil-24! The exact version is |
I have issues connecting to my Oracle 19c database using
python-oracledb
. I develop Node applications on the same machine, and have not had similar issues occuring withnode-oracledb
. No issues with similar application code on WSL Ubuntu.The same issue has been discussed on Stack Overflow, but not for the macOS specific case.
Is it an error or a hang or a crash?
Database error, crashes when calling
create_pool
.What error(s) or behavior you are seeing?
DatabaseError: ORA-24960: the attribute OCI_ATTR_PASSWORD is greater than the maximum allowable length of 1024
Does your application call init_oracle_client()?
Yes, I am using thick mode.
Include a runnable Python script that shows the problem.
The text was updated successfully, but these errors were encountered: