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

python链接postgresql

时间:2018-07-01 18:58:58      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:name   链接   数据库   div   python   ase   exe   SQ   postgre   

sudo apt-get install build-dep python-psycopg2
pip install psycopg2


#!/usr/bin/python
# -*- coding: UTF-8 -*-

import psycopg2
#连接数据库
conn = psycopg2.connect(database="dbname", user="username", password="userpwd", host="dbaddress", port="5432")
cur = conn.cursor()  
cur.execute("update table set name=‘‘")  
conn.commit()  
cur.close()  
conn.close()

  

python链接postgresql

标签:name   链接   数据库   div   python   ase   exe   SQ   postgre   

原文地址:https://www.cnblogs.com/kerwincui/p/9250780.html

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