I'm trying read the content of a XMLType
column from Oracle with cx_Oracle but i don't get it.
>>> row
(318, 379, 1, <cx_Oracle.OBJECT object at 0xef21ea0>)
>>> col = row[3]
>>> print col
<cx_Oracle.OBJECT object at 0xef21ea0>
>>> print col.type
<cx_Oracle.ObjectType SYS.XMLTYPE>
How can I read the content of a cx_Oracle.OBJECT
with type cx_Oracle.ObjectType SYS.XMLTYPE
?