Python connects the PostgreSQL database

Source: Internet
Author: User
Tags postgresql

Python can connect to PostgreSQL via a third-party module. More famous psycopg2 and Python3-postgresql.

(a) PSYCOPG2

Install under Ubuntu

sudo Install PYTHON3-PSYCOPG2

Create a test.py file

ImportPSYCOPG2#Database Connection Parametersconn = Psycopg2.connect (database="test1", user="JM", password="123", host="127.0.0.1", port="5432") cur=conn.cursor () Cur.execute ("SELECT * from A1;") Rows= Cur.fetchall ()#All rows in tablePrint(rows)

Conn.commit ()
Cur.close ()
Conn.close ()

The following is displayed after running

[(2'jack'girl'), (1'max ") , (3'Kate'  ' Girl ')]

(ii) Python3-postgresql

Install under Ubuntu

sudo Install Python3-postgresql

Create a file and run

Import PostgreSQL  # ('pq://username: password @localhost:5432/database name '= Postgresql.open ('pq://jm:[email protected]:5432/test1') PS=db.prepare ( " SELECT * FROM A1 " )print(PS ()) Ps.close () db.close ()

Python connects to the PostgreSQL database

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.