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

如何使用Python操纵Postgres数据库

时间:2018-09-25 12:45:25      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:\n   pen   name   usr   for   ati   bsp   cut   exec   

pip install psycopg2 psycopg2-binary

 

#!/usr/bin/python

import psycopg2
conn = psycopg2.connect(database="test", user="postgres", password="postgres", host="10.200.22.110", port="5432")
print "Opened database successfully"


cur = conn.cursor()
cur.execute("SELECT id, name from test")
rows = cur.fetchall()
for row in rows:
print "ID = ", row[0]
print "NAME = ", row[1], "\n"

print "Operation done successfully";
conn.close()

如何使用Python操纵Postgres数据库

标签:\n   pen   name   usr   for   ati   bsp   cut   exec   

原文地址:https://www.cnblogs.com/EikiXu/p/9698787.html

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