摘要: python 用sqlalchemy 连接Oracle数据库的时候报了下面这个错误: 这是因为 sqlalchemy 在create_engine的时候默认是调用cx_Oracle去连接数据库,而cx_Oracle 在创建dns连接字符串的时候是默认SID = tnsname (实例名),其实是在连 阅读全文
posted @ 2019-06-19 19:18 Sunshine168 阅读(2974) 评论(0) 推荐(0) 编辑
摘要: clob字段是oracle专门用于存储超长字符串的字段类型,一般varchar2只能存4000个字符串,超过4000个就存不下去了。 如果直接使用 pandas.read_sql(sql, conn)会报错,那么如何将clob读取到python中呢? 1.read方法 import cx_Oracl 阅读全文
posted @ 2019-06-19 19:09 Sunshine168 阅读(5541) 评论(0) 推荐(0) 编辑