python3利用cx_Oracle訪問Oracle資料庫

來源:互聯網
上載者:User

標籤:close   print   md5   用戶端   5.2.1   完成後   地址   環境變數   sele   

1、安裝Oracle用戶端instantclient
注意安裝的版本,本人安裝的是instantclient_11_1版本的,安裝instantclient_12_2版本的時候會因系統解析不了dll報錯。
(1)下載完成後解壓到一個目錄下,如:E:\instantclient_11_1
(2)增加環境變數:
  TNS_ADMIN,值為E:\instantclient_11_1
  NLS_LANG,值為SIMPLIFIED CHINESE_CHINA.ZHS16GBK,這是為了防止中文亂碼
  建立一個監聽檔案tnsnames.ora到E:\instantclient_11_1
2、安裝對應版本的cx_Oracle
:https://pypi.python.org/pypi/cx_Oracle/5.2.1
(1)這裡Oracle用戶端為11.1版本的,python為3.4版本,作業系統為64位,所以需要下載cx_Oracle-5.2.1-11g.win-amd64-py3.4.exe (md5)版本的cx_Oracle
(2)下載完成後,直接雙擊安裝
(3)安裝完成後,將用戶端(即:E:\instantclient_11_1目錄)下的所有dll檔案拷貝到python的包目錄下,即C:\Python34\Lib\site-packages檔案夾下
3、使用測試
import cx_Oracle
print(cx_Oracle.clientversion())
conn = cx_Oracle.connect("使用者名稱/密碼@伺服器位址/伺服器名")
cursor = conn.cursor()
cursor.execute("select address from temp_m_customer_addr_info where ID = ‘103791721‘")
row = cursor.fetchone()
print(row)
cursor.close()
conn.close()

python3利用cx_Oracle訪問Oracle資料庫

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.