码迷,mamicode.com
首页 > 数据库 > 详细

python -- 连接 orclae cx_Oracle的使用

时间:2019-07-23 09:42:32      阅读:124      评论:0      收藏:0      [点我收藏+]

标签:database   oracl   sele   连接数   select   关闭   style   执行   数据   

 

 

 

 

 

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的使用

标签:database   oracl   sele   连接数   select   关闭   style   执行   数据   

原文地址:https://www.cnblogs.com/baili-luoyun/p/11229521.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!