-
Notifications
You must be signed in to change notification settings - Fork 94
Closed
Labels
Description
Hi!
The latest oracledb documentation states that Variable.outconverter is a read-write attribute.
https://python-oracledb.readthedocs.io/en/latest/api_manual/variable.html#Variable.outconverter
However this doesn't seem to be true:
v = cursor.var(oracledb.DB_TYPE_NUMBER)
v.outconverter = lambda x: x
# AttributeError: property 'outconverter' of 'Var' object has no setter
Is the setter property missing or is the documentation wrong?
Cheers,
--leo