Python Operations PostgreSQL Database

Source: Internet
Author: User
Tags postgresql


1 import psycopg2 as pg2

  2

  3 # Return to database PostgreSQL connection

  4 def get_db_conn ():

  5 # Create connection

  6 return pg2.connect (database = ‘test’, user = ‘admin’, password = ‘admin’, host = ‘127.0.0.1’, port = ‘10001’)

  8

  9

10 # Operate the database PostgreSQL and return a result

11 def db_fetchone (sql):

12 try:

13 conn = get_db_conn ()

14 cur = conn.cursor ()

15 cur.execute (sql)

16 rows = cur.fetchone () # return one result, return multiple results using rows = cur.fetchall ()

17

18 return rows [0]

19 except pg2.DatabaseError as e:

20 print (‘Error $ s’% e)

twenty one

22 finally:

23 conn.commit ()

24 cur.close ()

25 conn.close ()





Python Operations 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.