您好,登錄后才能下訂單哦!
這篇文章主要介紹“Python連接oracle的問(wèn)題如何解決”的相關(guān)知識(shí),小編通過(guò)實(shí)際案例向大家展示操作過(guò)程,操作方法簡(jiǎn)單快捷,實(shí)用性強(qiáng),希望這篇“Python連接oracle的問(wèn)題如何解決”文章能幫助大家解決問(wèn)題。
開(kāi)發(fā)語(yǔ)言:Python,數(shù)據(jù)庫(kù):oracle,第三方庫(kù):cx_Oracle(用于python和oracle的連接),prettytable(用于表格化輸出展示數(shù)據(jù))
pip install cx_Oracle
直接使用了chatgpt提供的代碼,因?yàn)槲抑挥玫搅瞬樵?xún)方法,所以只查沒(méi)有增刪改,另外考慮到要同時(shí)查詢(xún)多次數(shù)據(jù),所以自己修改了實(shí)現(xiàn)了一個(gè)連接池的功能。
import cx_Oracle import queue class OracleDatabase: # 構(gòu)造函數(shù),傳入數(shù)據(jù)庫(kù)連接參數(shù) def __init__(self, user, pwd, dsn, size): self.user = user self.pwd = pwd self.dsn = dsn ## 定義連接池 self.size = size self.conn_queue = queue.Queue(maxsize=self.size) for i in range(self.size): self.conn_queue.put(self._create_connection()) # 創(chuàng)建數(shù)據(jù)庫(kù)連接 def _create_connection(self): return cx_Oracle.connect(self.user, self.pwd, self.dsn) # 從連接池里面獲取連接 def _get_conn(self): conn = self.conn_queue.get() if conn is None: self._create_connection() return conn # 將連接put到連接池中 def _put_conn(self, conn): self.conn_queue.put(conn) # 關(guān)閉所有連接 def _close_conn(self): try: while True: conn = self.conn_queue.get_nowait() if conn: conn.close() except queue.Empty: print(">>>>數(shù)據(jù)庫(kù)連接全部關(guān)閉<<<<") pass # 執(zhí)行查詢(xún)語(yǔ)句 def query(self, sql, params=None): res = [] conn = self._get_conn() cursor = conn.cursor() try: if params: cursor.execute(sql, params) else: cursor.execute(sql) rows = cursor.fetchall() for row in rows: res.append(row) except Exception as e: print(str(e)) finally: cursor.close() self._put_conn(conn) return res
if __name__ == '__main__': user = "user_dba" pwd = "user_password" dsn = cx_Oracle.makedsn('0.0.0.0', '1521', service_name='s_demo_db') db = OracleDatabase(user, pwd, dsn, 2) cl_code = input("輸入訂單號(hào): ").strip() print("數(shù)據(jù)信息展示:") sql_1 = """select * from table_demo c where c.cl_code = :cl_code""" results_1 = db.query(sql_1, [cl_code]) print(results_1) # ......
安裝prettytable
pip install PrettyTable
示例代碼
from prettytable import PrettyTable ## 接著第三部分的代碼 tb_1 = PrettyTable(['**號(hào)', '**時(shí)間', '當(dāng)前狀態(tài)', '單號(hào)', '機(jī)構(gòu)']) for rs_1 in results_1: tb_1.add_row([rs_1[0], rs_1[1], rs_1[2], rs_1[3], rs_1[4]]) print(tb_1)
使用效果如下:粘貼訂單號(hào)回車(chē),直接返回下面所需要的信息數(shù)據(jù)(測(cè)試數(shù)據(jù)):
第一個(gè)問(wèn)題就是安裝 cx_Oracle的時(shí)候出錯(cuò):
ERROR: Could not build wheels for cx_Oracle, which is required to install pyproject.toml-based projects
解決方式:安裝Microsoft C++ 生成工具,Microsoft C++ 生成工具 - Visual Studio,更改安裝目錄,按照默認(rèn)選項(xiàng)安裝即可。
報(bào)錯(cuò)信息
cx_Oracle.DatabaseError: DPI-1047: Cannot locate a 64-bit Oracle Client library:"The specified module could not be found".See https://cx-oracle.readthedocs.io/en/latest/user_guide/installation.html for help
解決方式:復(fù)制oracle客戶(hù)端(客戶(hù)端下載見(jiàn)問(wèn)題3)目錄中的oci,oraocci11,oraociei11的3個(gè)DLL粘貼到你的Paython目錄的Lib/site-packages文件夾下面。
報(bào)錯(cuò)信息
cx_Oracle.DatabaseError: DPI-1072: the Oracle Client library version is unsupported
下載oracle客戶(hù)端,并解壓安裝。下載地址:oracle.github.io/odpi/doc/installation 我出現(xiàn)這個(gè)問(wèn)題,是因?yàn)槲冶緳C(jī)原來(lái)安裝的是19.18版本,換成11.2版本的客戶(hù)端,按照問(wèn)題2的操作,將三個(gè)dll文件重新復(fù)制過(guò)去,解決問(wèn)題。
將sql語(yǔ)句集中放到配置文件里面,并配置表頭,可以實(shí)現(xiàn)多查詢(xún)自由擴(kuò)展。
通過(guò)bat腳本調(diào)用執(zhí)行,真正實(shí)現(xiàn)一鍵查詢(xún)。
關(guān)于“Python連接oracle的問(wèn)題如何解決”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí),可以關(guān)注億速云行業(yè)資訊頻道,小編每天都會(huì)為大家更新不同的知識(shí)點(diǎn)。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。