oracle 的clob数据的python读取

用python cx_Oracle读取oracle数据,存在clob类型数据,利用
dbms_lob.substr(extension,4000)来转换成python的str类型,大于3200时候会报错(很多地方是4000,应该是其他设置原因)

ORA-06502: PL/SQL: 数字或值错误 :  字符串缓冲区太小

针对此问题解决方法:
1 直接读取clob数据 ,其数据类型在oracle为cx_Oracle.clob,
2 通过如下方式可以读取clob数据:
     text = cursor.fetchmany(1)
        pram = ''
        if text:
            if text[0][12]:
                for item in text[0][12].read():
                    pram += item
                new_text = list(text[0])
                new_text[12] = pram
                text = [tuple(new_text)]
 即实际类型为一个生成器,迭代即可获取所有数据组成字符串

你可能感兴趣的:(oracle 的clob数据的python读取)