码迷,mamicode.com
首页 > 数据库 > 详细

python连接postgresql数据库

时间:2015-12-06 17:27:12      阅读:1358      评论:0      收藏:0      [点我收藏+]

标签:

python可以通过第三方模块连接postgresql. 比较有名的有psycopg2  和python3-postgresql

(一)psycopg2

ubuntu下安装

sudo apt-get install python3-psycopg2

创建一个test.py文件

import psycopg2
# 数据库连接参数
conn = 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 table
print(rows)

 conn.commit()
 cur.close()
 conn.close()

 

运行后显示如下

[(2, jack, girl), (1, max, boy ), (3, kate, girl)]

(二)python3-postgresql

ubuntu下安装

sudo apt-get install python3-postgresql

 创建文件并运行

import postgresql

  #(pq://用户名:密码@localhost:5432/数据库名)
db = postgresql.open(pq://jm:123@localhost:5432/test1)
ps=db.prepare("select * from a1")

print(ps())

ps.close()
db.close()

 

python连接postgresql数据库

标签:

原文地址:http://www.cnblogs.com/jmlovepython/p/5023794.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!