Python 操作 PostgreSQL 數(shù)據(jù)庫(kù)示例【連接、增刪改查等】
本文實(shí)例講述了Python 操作 PostgreSQL 數(shù)據(jù)庫(kù)。分享給大家供大家參考,具體如下:
我使用的是 Python 3.7.0
PostgreSQL可以使用psycopg2模塊與Python集成。
sycopg2是用于Python編程語(yǔ)言的PostgreSQL數(shù)據(jù)庫(kù)適配器。
psycopg2是非常小,快速,穩(wěn)定的。 您不需要單獨(dú)安裝此模塊,因?yàn)槟J(rèn)情況下它會(huì)隨著Python 2.5.x版本一起發(fā)布。
pip3 install python-psycopg2pip3 install psycopg2-binary
連接到數(shù)據(jù)庫(kù)
以下Python代碼顯示了如何連接到現(xiàn)有的數(shù)據(jù)庫(kù)。 如果數(shù)據(jù)庫(kù)不存在,那么它將自動(dòng)創(chuàng)建,最后將返回一個(gè)數(shù)據(jù)庫(kù)對(duì)象。
#!/usr/bin/pythonimport psycopg2conn = psycopg2.connect(database='testdb', user='postgres', password='pass123', host='127.0.0.1', port='5432')print('Opened database successfully')
在這里指定使用testdb作為數(shù)據(jù)庫(kù)名稱(chēng),如果數(shù)據(jù)庫(kù)已成功打開(kāi)連接,則會(huì)提供以下消息:
Open database successfully
創(chuàng)建表
以下Python程序?qū)⒂糜谠谙惹皠?chuàng)建的數(shù)據(jù)庫(kù)(testdb)中創(chuàng)建一個(gè)表:
#!/usr/bin/pythonimport psycopg2conn = psycopg2.connect(database='testdb', user='postgres', password='pass123', host='127.0.0.1', port='5432')print('Opened database successfully')cur = conn.cursor()cur.execute(’’’CREATE TABLE COMPANY (ID INT PRIMARY KEY NOT NULL, NAME TEXT NOT NULL, AGE INT NOT NULL, ADDRESS CHAR(50), SALARY REAL);’’’)print 'Table created successfully'conn.commit()conn.close()
當(dāng)執(zhí)行上述程序時(shí),它將在數(shù)據(jù)庫(kù)testdb中創(chuàng)建COMPANY表,并顯示以下消息:
Opened database successfullyTable created successfully
插入操作
以下Python程序顯示了如何在上述示例中創(chuàng)建的COMPANY表中創(chuàng)建記錄:
#!/usr/bin/pythonimport psycopg2conn = psycopg2.connect(database='testdb', user='postgres', password='pass123', host='127.0.0.1', port='5432')print('Opened database successfully')cur = conn.cursor()cur.execute('INSERT INTO COMPANY (ID,NAME,AGE,ADDRESS,SALARY) VALUES (1, ’Paul’, 32, ’California’, 20000.00 )');cur.execute('INSERT INTO COMPANY (ID,NAME,AGE,ADDRESS,SALARY) VALUES (2, ’Allen’, 25, ’Texas’, 15000.00 )');cur.execute('INSERT INTO COMPANY (ID,NAME,AGE,ADDRESS,SALARY) VALUES (3, ’Teddy’, 23, ’Norway’, 20000.00 )');cur.execute('INSERT INTO COMPANY (ID,NAME,AGE,ADDRESS,SALARY) VALUES (4, ’Mark’, 25, ’Rich-Mond ’, 65000.00 )');conn.commit()print('Records created successfully');conn.close()
當(dāng)執(zhí)行上述程序時(shí),它將在COMPANY表中創(chuàng)建/插入給定的記錄,并顯示以下兩行:
Opened database successfullyRecords created successfully
SELECT操作
以下 Python 程序顯示了如何從上述示例中創(chuàng)建的 COMPANY 表中獲取和顯示記錄:
#!/usr/bin/pythonimport psycopg2conn = psycopg2.connect(database='testdb', user='postgres', password='pass123', host='127.0.0.1', port='5432')print('Opened database successfully')cur = conn.cursor()cur.execute('SELECT id, name, address, salary from COMPANY')rows = cur.fetchall()for row in rows: print('ID = ', row[0]) print('NAME = ', row[1]) print('ADDRESS = ', row[2]) print('SALARY = ', row[3], 'n')print('Operation done successfully');conn.close()
執(zhí)行上述程序時(shí),會(huì)產(chǎn)生以下結(jié)果:
Opened database successfullyID = 1NAME = PaulADDRESS = CaliforniaSALARY = 20000.0
ID = 2NAME = AllenADDRESS = TexasSALARY = 15000.0
ID = 3NAME = TeddyADDRESS = NorwaySALARY = 20000.0
ID = 4NAME = MarkADDRESS = Rich-MondSALARY = 65000.0
Operation done successfully
更新操作
以下 Python 代碼顯示了如何使用UPDATE語(yǔ)句來(lái)更新任何記錄,然后從COMPANY表中獲取并顯示更新的記錄:
#!/usr/bin/pythonimport psycopg2conn = psycopg2.connect(database='testdb', user='postgres', password='pass123', host='127.0.0.1', port='5432')print('Opened database successfully')cur = conn.cursor()cur.execute('UPDATE COMPANY set SALARY = 25000.00 where ID=1')conn.commitprint('Total number of rows updated :', cur.rowcount)cur.execute('SELECT id, name, address, salary from COMPANY')rows = cur.fetchall()for row in rows: print('ID = ', row[0]) print('NAME = ', row[1]) print('ADDRESS = ', row[2]) print('SALARY = ', row[3], 'n')print('Operation done successfully');conn.close()
Python
執(zhí)行上述程序時(shí),會(huì)產(chǎn)生以下結(jié)果:
Opened database successfullyTotal number of rows updated : 1ID = 1NAME = PaulADDRESS = CaliforniaSALARY = 25000.0
ID = 2NAME = AllenADDRESS = TexasSALARY = 15000.0
ID = 3NAME = TeddyADDRESS = NorwaySALARY = 20000.0
ID = 4NAME = MarkADDRESS = Rich-MondSALARY = 65000.0
Operation done successfully
刪除操作
以下 Python 代碼顯示了如何使用 DELETE 語(yǔ)句來(lái)刪除記錄,然后從 COMPANY 表中獲取并顯示剩余的記錄:
#!/usr/bin/pythonimport psycopg2conn = psycopg2.connect(database='testdb', user='postgres', password='pass123', host='127.0.0.1', port='5432')print('Opened database successfully')cur = conn.cursor()cur.execute('DELETE from COMPANY where ID=2;')conn.commitprint('Total number of rows deleted :', cur.rowcount)cur.execute('SELECT id, name, address, salary from COMPANY')rows = cur.fetchall()for row in rows: print('ID = ', row[0]) print('NAME = ', row[1]) print('ADDRESS = ', row[2]) print('SALARY = ', row[3], 'n')print('Operation done successfully');conn.close()
執(zhí)行上述程序時(shí),會(huì)產(chǎn)生以下結(jié)果:
Opened database successfullyTotal number of rows deleted : 1ID = 1NAME = PaulADDRESS = CaliforniaSALARY = 20000.0
ID = 3NAME = TeddyADDRESS = NorwaySALARY = 20000.0
ID = 4NAME = MarkADDRESS = Rich-MondSALARY = 65000.0
Operation done successfully
更多關(guān)于Python相關(guān)內(nèi)容感興趣的讀者可查看本站專(zhuān)題:《Python常見(jiàn)數(shù)據(jù)庫(kù)操作技巧匯總》、《Python數(shù)學(xué)運(yùn)算技巧總結(jié)》、《Python數(shù)據(jù)結(jié)構(gòu)與算法教程》、《Python函數(shù)使用技巧總結(jié)》、《Python字符串操作技巧匯總》、《Python入門(mén)與進(jìn)階經(jīng)典教程》及《Python文件與目錄操作技巧匯總》
希望本文所述對(duì)大家Python程序設(shè)計(jì)有所幫助。
相關(guān)文章:
1. 三個(gè)不常見(jiàn)的 HTML5 實(shí)用新特性簡(jiǎn)介2. CSS可以做的幾個(gè)令你嘆為觀(guān)止的實(shí)例分享3. HTML中的XML數(shù)據(jù)島記錄編輯與添加4. 詳解盒子端CSS動(dòng)畫(huà)性能提升5. 淺談CSS不規(guī)則邊框的生成方案6. 得到XML文檔大小的方法7. CSS代碼檢查工具stylelint的使用方法詳解8. msxml3.dll 錯(cuò)誤 800c0019 系統(tǒng)錯(cuò)誤:-2146697191解決方法9. WML語(yǔ)言的基本情況10. html中的form不提交(排除)某些input 原創(chuàng)
