直接将读取到的blob/clob字段用read()方法获取即可,例如:result[0][2].read()
#clob转换字符串
def clobToString(x):
if x is None:
return ''
else:
return x.read()
或者通过判断字段类型是否是LOB,再用read()方法获取,例如:isinstance(j,cx_Oracle.LOB)
直接将读取到的blob/clob字段用read()方法获取即可,例如:result[0][2].read()
#clob转换字符串
def clobToString(x):
if x is None:
return ''
else:
return x.read()
或者通过判断字段类型是否是LOB,再用read()方法获取,例如:isinstance(j,cx_Oracle.LOB)