-
Notifications
You must be signed in to change notification settings - Fork 81
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
Nested records types - Unable to assign values #466
Comments
This is not a bug but a known limitation. If you wish to have this behavior changed, you will have to log an enhancement request with Oracle Support. Essentially, instead of trying to set the nested object you can simply get the nested object and manipulate it. Instead of this: nested_obj = each_field.type.newobject()
for attr in nested_obj.type.attributes:
print(f"Initializing attribute {attr.name} of type {attr.type.name}")
setattr(nested_obj, attr.name, "B")
setattr(trn_obj, each_field.name, nested_obj) do this: nested_obj = getattr(trn_obj, each_field.name)
for attr in nested_obj.type.attributes:
print(f"Initializing attribute {attr.name} of type {attr.type.name}")
setattr(nested_obj, attr.name, "B") The asserts you placed at the end of your script will pass as expected. |
Thank you so much. I spent over a week trying to understand the problem ! But my large DBObject is crashing with memory issues when I try to set the value of the nest fields. Is there an alternative to using setattr without knowing the field name? The crash only states:- Process finished with exit code -1073741819 (0xC0000005) |
Hmm, that error implies a segfault of some sort. Are you able to replicate the issue consistently? And provide me a test case? I'm not sure what you mean by "using setattr() without knowing the field name"? Can you clarify? |
This test case triggers the segfault on my environment 100% of the time. The size of the VARCHAR2 variables doesn't seem to affect anything: it always triggers after FIELD8.
Output
|
I tried your test case on Linux and was unable to reproduce. I also tried it on Windows with 19.20 client and was unable to reproduce. Can you try with the latest instant client version for 19c? Can you also provide a call stack (using gdb or an equivalent tool on Windows)? My suspicions are that this is an Oracle Client library issue. If so, you will need to work with Oracle Support -- assuming that using the latest version of the client doesn't resolve it for you! |
You are correct ! I download the Oracle Instant client version 23 _7, ran with :- And it worked. Thank you so much. I spent two weeks tearing my hair out. |
What versions are you using?
database: 19c
platform.platform: Windows-10-10.0.19045-SP0
sys.maxsize > 2**32: True
platform.python_version: 3.12.8
oracledb.version: 3.0.01
Is it an error or a hang or a crash?
Error
What error(s) or behavior you are seeing?
Similar to bug: #456
I need to work with a PLSQL record types defined inside a PLSQL package. The each record type will contain several other custom RECORD TYPES and TABLE collections defined as variables. The TABLE collections are working as expected so I omitted them from the code.
The issue is I cannot assign or access any values to DbObjectType record nested as an attribute inside a parent DbObjectType object created with GetType(). The script fails with a "OCI-21602: operation does not support the specified typecode" error. Please see Code Snippet.
Does your application call init_oracle_client()?
Yes.
Include a runnable Python script that shows the problem.
The text was updated successfully, but these errors were encountered: