I have a PL/SQL function in my oracle database which returns a custom type which is a table of numbers. Running this function within a sql console works fine.
What's the correct way to get the result within a python script?
For build-in type I can do something like this:
return_value = cursor.var(cx_Oracle.STRING)
cursor.callfunc("myfunction", return_value, [list_of_params])
But I have no idea how to handle custom types.