通过pygresql用python操作postgresql数据库
时间:2010-10-01 来源:cornsea
from pg import DB
1. 连接数据库
conn=DB(dbname="mydb",host="192.168.1.100",user="postgres",passwd="postgres")
2. 查询数据库
print conn.query("select * from yourtable")
3. 插入一条记录
conn.query("insert into yourtable values ('abc')")
相关阅读 更多 +