Python PostgreSQL operations

Source: Internet
Author: User
2005-2-23
This post is really a long time apart from the previous one, and it continues to work harder!

Today, let's try Python's database operation capabilities: Using python to connect to PostgreSQL (my favorite ).

First install PostgreSQL, http://www.postgresql.org
Then I checked it on the PostgreSQL website, and there was a python Connection Program pygresql.

It is divided into two modules: the old PG and the new pgdb.
PG documentation: http://www.pgsqldb.org/pgsqldoc-7.2c/pygresql.html
Pgdb documentation: http://www.python.org/peps/pep-0249.html

Today, let's try pg. The code is really simple:

Import PG

DB = pg. Connect (dbname = 'yanxu ', host = 'localhost', user = 'qingfeng', passwd = '000000 ')
For OBJ in db. Query ("select * From Table1". dictresult ():
Print OBJ ['user _ name']

DB. Close ()

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.