首页 > 代码库 > python 连接oracle 报错 cx_Oracle.DatabaseErro

python 连接oracle 报错 cx_Oracle.DatabaseErro

1,python 连接oracle的时候报错如下

cx_Oracle.DatabaseError: ORA-24315: 非法的属性类型
,2,导致这个错误的原因是服务器oracle版本和客户端cx_oracle客户端版本不一致引起的,所以通过下面命令询oracle版本。
select * from v$version

3,然后到 http://sourceforge.net/projects/cx-oracle 下载对应的客户端版本即可

python 连接oracle 报错 cx_Oracle.DatabaseErro