Python串連PostgreSQL資料庫的方法_python

來源:互聯網
上載者:User

前言

其實在Python中可以用來串連PostgreSQL的模組很多,這裡比較推薦psycopg2。psycopg2安裝起來非常的簡單(pip install psycopg2),這裡主要重點介紹下如何使用。

串連資料庫:

import psycopg2conn = psycopg2.connect(host="10.100.157.168",user="postgres",password="postgres",database="testdb")

串連時可用參數:

     dbname – 資料庫名稱 (dsn串連模式)

     database – 資料庫名稱

     user – 使用者名稱

     password – 密碼

     host – 伺服器位址 (如果不提供預設串連Unix Socket)

     port – 串連連接埠 (預設5432)

執行SQL

import psycopg2 conn = psycopg2.connect(host="10.100.157.168",port=5432,user="postgres",password="postgres",database="testdb")cur = conn.cursor()sql = ""cur.execute(sql)conn.commit() # 查詢時無需,此方法提交當前事務。如果不調用這個方法,無論做了什麼修改,自從上次調用#commit()是不可見的conn.close()

另外執行SQL時支援參數化

文法: cursor.execute(sql [, optional parameters])

案例: cursor.execute("insert into people values (%s, %s)", (who, age))

總結

以上就是這篇文章的全部內容了,希望本文的內容對大家的學習或者工作能帶來一定的協助,如果有疑問大家可以留言交流。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.