首先安装psycopg2
import psycopg2
conn=psycopg2.connect(database="postgres",user="postgres",password="1234",host="127.0.0.1",port="5432")
cur = conn.cursor()
cur.execute("CREATE TABLE student1(id double precision,name varchar,sex varchar);")
#插入数据
cur.execute("INSERT INTO student(id,name,sex)VALUES(%s,%s,%s)",(1,'Aspirin','M'))
cur.execute("INSERT INTO student(id,name,sex)VALUES(%s,%s,%s)",(2,'Taxol','F'))
cur.execute("INSERT INTO student(id,name,sex)VALUES(%s,%s,%s)",(3,'Dixheral','M'))
cur.execute("SELECT * from student")
rows = cur.fetchall()
conn.commit()
cur.close()
conn.close()
这里有几个注意的细节,之前一直使用numeric的数据格式,最后导出的时候产生一些问题:
会出现decimal这个词,影响使用,最后改为double precision。。。另外
需要:
conn.commit()
cur.close()
conn.close()
以后重新打开pgadmin才能看到新建的表,如果是已经有的表,那就cur
(select * from combin1)
cur = conn.cursor()
cur.execute("SELECT * from combin1")
rows = cur.fetchall()
rows[1][0]
其他使用暂时没有亲自实验过,暂时认为可以顺利的继续进行。