Pycharm中Python3连接Oracle

Posted 九五二七乌托邦

tags:

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

一、环境配置:
系统:win7、10 (64位)
软件:1.Python3.7.2 (64位)
2.instantclient-basic-windows.x64-11.2.0.4.0.zip(64位) --这个必须要安装
     百度网盘下载地址:https://pan.baidu.com/s/1wuOUIT7wmnIm5iq-50fFvQ 提取码:6f8g
3.Oracle 11gR2 (64位)
最好要保持Python、instantclient和Oracle位数一致(我本机安装的都是64位的)!!!

二、步骤:
2.1 把instantclient-basic-windows.x64-11.2.0.4.0.zip解压到某一目录并把目录配置到系统环境变量Path中
2.2 下载安装vcredist_x64.exe,安装好后重启电脑,必须要重启一下
2.3 安装cx_Oracle: pip install cx_Oracle

三、测试:

import cx_Oracle
class My_plsq:
    def my_cha(self,my_sql_c):
        try:
            conn = cx_Oracle.connect("连接名","密码","localhost/orcl")
            cursor = conn.cursor()
            cursor.execute(my_sql_c)
            all_data = cursor.fetchall()
            oo = list(all_data[0])
            return oo
        except cx_Oracle.DatabaseError:
            return print("无效的SQL语句")
if __name__ == \'__main__\':
    a=My_plsq()
    l=a.my_cha("SELECT * FROM 表名")
print(l)

亲测有效

 

以上是关于Pycharm中Python3连接Oracle的主要内容,如果未能解决你的问题,请参考以下文章

如何在Pycharm中连接配置MySQL数据库

python连oracle: DPI-1047错误

PyCharm上的python3导入问题[重复]

Python3.5在Windows 7下连接ORACLE数据库

如何在Python下连接Oracle数据库

pycharm里连接mysql