python -- 连接 orclae cx_Oracle的使用

python -- 连接 orclae cx_Oracle的使用,第1张

概述          import cx_Oracle #引用模块cx_Oracleconn=cx_Oracle.connect(‘oa/[email protected]:1521/ekp‘) #连接数据库cursor = conn.cursor ()try: #

 

 

 

 

 

import cx_Oracle                                                #引用模块cx_Oracleconn=cx_Oracle.connect(oa/[email protected]: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()                                                       #关闭cursorconn.close()
总结

以上是内存溢出为你收集整理的python -- 连接 orclae cx_Oracle的使用全部内容,希望文章能够帮你解决python -- 连接 orclae cx_Oracle的使用所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1195704.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-03
下一篇 2022-06-03

发表评论

登录后才能评论

评论列表(0条)

保存