python環境連結Oracle資料庫
首先要檢視自己安裝的python版本:
(base) C:\Users\yspmm>python
Python 3.7.0 (default, Jun 28 2018, 08:04:48) [MSC v.1912 64 bit (AMD64)] :: Anaconda, Inc. on win32
Type "help", "copyright", "credits" or "license" for more information.
連線 Oracle 需要安裝 cx_Oracle 和 oracle 客戶端 ,根據版本和系統資訊從如下地址查詢對應 cx_Oracle ,下載地址: ,在裡面搜尋cx_Oracle,即可找到該模組,其下載地址為 ,本人對應版本如下圖所示:
將下載檔案複製到指定目錄或CMD進入一下載檔案的目錄下,如下:
(base) C:\Users\yspmm>E:
(base) E:\>cd python37
(base) E:\python37>cd tools
(base) E:\python37\tools>dir
驅動器 E 中的卷沒有標籤。
卷的序列號是 0CBF-0BCF
E:\python37\tools 的目錄
2019/08/05 11:18 <DIR> .
2019/08/05 11:18 <DIR> ..
2019/08/05 11:14 187,766 cx_Oracle-7.2.1-cp37-cp37m-win_amd64.whl
1 個檔案 187,766 位元組
2 個目錄 68,300,627,968 可用位元組
執行 pip intall 命令進行安裝,如下:
(base) E:\python37\tools>pip install cx_Oracle-7.2.1-cp37-cp37m-win_amd64.whl
Processing e:\python37\tools\cx_oracle-7.2.1-cp37-cp37m-win_amd64.whl
Installing collected packages: cx-Oracle
Successfully installed cx-Oracle-7.2.1
接下來還需要安裝 Oracle 的客戶端,如果客戶端電腦之前沒有安裝過 oracle 客戶端或軟體,則需要安裝windows的 Instant Client 。
1) 下載 Instant Client
地址:
選擇合適的版本進行下載,一般12c即可。
2) 解壓下載檔案到特定目錄並將該目錄新增到 windows 的環境變數,如下:
放到一個位置,然後配置環境變數,Path里加上路徑,如下:
D:\Program Files (x86)\instantclient_12_2
import cx_Oracle
conn = cx_Oracle.connect('aaa/bbb@192.168.1.5:1521/xxxdg')
cursor = conn.cursor()
result=cursor.execute('select * from uc.tables')
#使用fetchone()方法獲取一條資料
#data=cursor.fetchone()
#獲取所有資料
all_data=cursor.fetchall()
print (all_data)
#獲取部分資料,8條
many_data=cursor.fetchmany(8)
print (many_data)
conn.close()
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/18841027/viewspace-2655148/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Docker環境Oracle資料庫搭建DockerOracle資料庫
- Linux環境配置DBD::Oracle,幫助Perl連線Oracle資料庫LinuxOracle資料庫
- 【Oracle】Python 連線Oracle 資料庫OraclePython資料庫
- Python 連線 Oracle資料庫PythonOracle資料庫
- Python連線oracle資料庫PythonOracle資料庫
- ORACLE RAC資料庫配置Dataguard環境(3)Oracle資料庫
- ORACLE RAC資料庫配置Dataguard環境(2)Oracle資料庫
- ORACLE RAC資料庫配置Dataguard環境(1)Oracle資料庫
- 部落格連結—Oracle資料庫類Oracle資料庫
- Win環境至Linux環境Oracle資料庫遷移全過程LinuxOracle資料庫
- openGauss資料庫JDBC環境連線配置(Eclipse)資料庫JDBCEclipse
- python連結mysql資料庫詳解PythonMySql資料庫
- python3.4連線oracle資料庫PythonOracle資料庫
- python3.6連線oracle資料庫PythonOracle資料庫
- Python連線資料庫程式碼結構Python資料庫
- oracle 資料庫搭建高可用環境 容災參考。Oracle資料庫
- 陌生Oracle的資料庫環境的巡檢內容Oracle資料庫
- Python資料探勘環境搭建Python
- Linux環境下:程式的連結, 裝載和庫[靜態連結]Linux
- Oracle——04同義詞與資料庫連結Oracle資料庫
- uat環境停不了資料庫資料庫
- php連結資料庫PHP資料庫
- 基於C++11的資料庫連線池環境配置C++資料庫
- 【資料庫資料恢復】LINUX環境下ORACLE資料庫誤刪除的資料恢復資料庫資料恢復LinuxOracle
- Oracle資料庫中資料行遷移與行連結Oracle資料庫
- python資料庫連線池技術總結Python資料庫
- 環境1-oracle10G資料庫軟體安裝Oracle資料庫
- jmeter連結mysql資料庫JMeterMySql資料庫
- Oracle連線MongoDB資料庫OracleMongoDB資料庫
- Oracle資料庫連線方式Oracle資料庫
- Java連線oracle資料庫JavaOracle資料庫
- wdcp環境innodb結構mysql資料庫表異常需要重建MySql資料庫
- 教你如何使用Docker製作Python環境連線Oracle映象DockerPythonOracle
- oracle 資料庫安裝前環境檢查和準備工作Oracle資料庫
- 【MySQL資料庫】認識資料庫+環境搭建--------Windows系統MySql資料庫Windows
- 資料庫索引,小白連環16問資料庫索引
- oracle create database link_資料庫連結測試OracleDatabase資料庫
- 關於資料庫間連結問題彙總---Oracle資料庫Oracle