python -- 连接 orclae cx_Oracle的使用

Posted baili-luoyun

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python -- 连接 orclae cx_Oracle的使用相关的知识,希望对你有一定的参考价值。

 

 

 

 

 

import cx_Oracle                                                #引用模块cx_Oracle
conn=cx_Oracle.connect(oa/oa@192.168.0.70:1521/ekp)    #连接数据库


cursor = conn.cursor ()

try:
    # 解析sql语句
    # cursor.parse("select *  dual")
    pass
    # 捕获SQL异常
except cx_Oracle.DatabaseError as e:
    print(e)   # ORA-00923: 未找到要求的 FROM 关键字

# 执行sql 语句
cursor.execute ("select * from EKP_PRODUCTIVITY_SL")


for row in cursor:
    print(row)




c.close()                                                       #关闭cursor
conn.close()

 

以上是关于python -- 连接 orclae cx_Oracle的使用的主要内容,如果未能解决你的问题,请参考以下文章

python用cx_Oracle连接数据库,出现错误cx_Oracle.DatabaseError: DPI-1047: Cannot locate a 64-bit Oracle Client li

python连接oracle报错CX_oracle解决方法

python 连接oracle(cx_Oracle模块)

Python连接oracle

python_操作oracle数据库

cx_Freeze 与 python 包(不仅仅是一个模块)