How To Get Custom Object From Callfunc In Cx_oracle?
I have an PL/SQL function my_function that returns custom defined object: CREATE OR REPLACE TYPE 'TP_ACTION' AS OBJECT ( stop_time timestamp, user_name varchar2(64),
Solution 1:
The ability to bind Oracle objects is only available in the unreleased (development) version of cx_Oracle. This is needed for calling a function that returns an object. If you can make use of the development version your code will work; otherwise, please wait for the official release.
Post a Comment for "How To Get Custom Object From Callfunc In Cx_oracle?"