cx_Oracle 连接数据库脚本
Posted 笨丫头就是笨
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了cx_Oracle 连接数据库脚本相关的知识,希望对你有一定的参考价值。
import cx_Oracle as oracle db = oracle.connect(‘blsdm/[email protected]com:1521/orcl‘) cursor = db.cursor() cursor.execute(‘select sysdate from dual‘) data = cursor.fetchone() print(‘Database time:%s‘ % data) cursor.close() db.close()
以上是关于cx_Oracle 连接数据库脚本的主要内容,如果未能解决你的问题,请参考以下文章
Linux下使用Python连接Oracle 报cx_Oracle.DatabaseError: DPI-1047: 64-bit Oracle Client library cannot be lo
python使用cx_oracle模块连接oracle数据库
python用cx_Oracle连接数据库,出现错误cx_Oracle.DatabaseError: DPI-1047: Cannot locate a 64-bit Oracle Client li