Python3.6连接Oracle数据库的方法详解
本文实例讲述了Python3.6连接Oracle数据库的方法。分享给大家供大家参考,具体如下:
下载cx_Oracle模块模块:
https://pypi.python.org/pypi/cx_Oracle/5.2.1#downloads
这里下载的是源码进行安装
[root@oracleoracle]#tarxfcx_Oracle-5.2.1.tar.gz [root@oracleoracle]#cdcx_Oracle-5.2.1 [root@oraclecx_Oracle-5.2.1]#pythonsetup.pybuild Traceback(mostrecentcalllast): File"setup.py",line170,inraiseDistutilsSetupError("cannotlocateanOraclesoftware"\ distutils.errors.DistutilsSetupError:cannotlocateanOraclesoftwareinstallation
报错解决办法:在root用户的.bash_profile文件中添加oracle_home的环境变量
exportORACLE_HOME=/u01/app/product/11.2.0/dbhome_1 PATH=${ORACLE_HOME}/bin:$PATH:$HOME/bin [root@oraclecx_Oracle-5.2.1]#source/root/.bash_profile [root@oraclecx_Oracle-5.2.1]#echo${ORACLE_HOME} /u01/app/product/11.2.0/dbhome_1
然后继续build:
[root@oraclecx_Oracle-5.2.1]#pythonsetup.pybuild runningbuild runningbuild_ext
后面输出信息省略
[root@oraclecx_Oracle-5.2.1]#pythonsetup.pyinstall runninginstall runningbdist_egg
后面输出信息省略
按照完成之后,进行验证模块:
>>>importcx_Oracle Traceback(mostrecentcalllast): File"",line1,in ImportError:libclntsh.so.11.1:cannotopensharedobjectfile:Nosuchfileordirectory
解决办法:在root用户的.bash_profile文件中添加LD_LIBRARY_PATH的环境变量
LD_LIBRARY_PATH=$ORACLE_HOME/lib:/usr/lib:/usr/local/lib exportLD_LIBRARY_PATH
[root@oraclecx_Oracle-5.2.1]#source/root/.bash_profile [root@oraclecx_Oracle-5.2.1]#python
Python3.6.1(default,Jul132017,14:31:18) [GCC4.4.720120313(RedHat4.4.7-17)]onlinux Type"help","copyright","credits"or"license"formoreinformation. >>>importcx_Oracle
#!/usr/bin/python #coding=utf8 #importmodule importcx_Oracleasoracle #connectoracledatabase db=oracle.connect('scott/redhat@192.168.223.138:1521/oracle.test') #createcursor cursor=db.cursor() #executesql cursor.execute('selectsysdatefromdual') #fetchdata data=cursor.fetchone() print('Databasetime:%s'%data) #closecursorandoracle cursor.close() db.close()
[oracle@oraclescripts]$pythonconnectoracle.py Databasetime:2017-08-0410:20:39
#!/usr/bin/python #coding=utf8 importcx_Oracleasoracle deforaclesql(cursor): fp=open(r'/home/oracle/scripts/tablespace.sql') fp_sql=fp.read() cursor.execute(fp_sql) data=cursor.fetchall() returndata if__name__=='__main__': ipaddr="192.168.223.138" username="system" password="redhat" oracle_port="1521" oracle_service="oracle.test" try: db=oracle.connect(username+"/"+password+"@"+ipaddr+":"+oracle_port+"/"+oracle_service) #将异常捕捉,然后e就是抛异常的具体内容 exceptExceptionase: print(e) else: cursor=db.cursor() data=oraclesql(cursor) foriindata: print(i) cursor.close() db.close()
更多关于Python相关内容感兴趣的读者可查看本站专题:《Python常见数据库操作技巧汇总》、《Python编码操作技巧总结》、《Python数据结构与算法教程》、《PythonSocket编程技巧总结》、《Python函数使用技巧总结》、《Python字符串操作技巧汇总》、《Python入门与进阶经典教程》及《Python文件与目录操作技巧汇总》
希望本文所述对大家Python程序设计有所帮助。