小编典典

python psycopg2未插入PostgreSQL表

python

我正在使用以下内容尝试将记录插入到postgresql数据库表中,但是它不起作用。我没有任何错误,但是表中没有记录。我需要提交或其他东西吗?我正在使用随Bitnami
djangostack安装安装的postgresql数据库。

import psycopg2

try:
    conn = psycopg2.connect("dbname='djangostack' user='bitnami' host='localhost' password='password'")
except:
    print "Cannot connect to db"

cur = conn.cursor()

try:
    cur.execute("""insert into cnet values ('r', 's', 'e', 'c', 'w', 's', 'i', 'd', 't')""")
except:
    print "Cannot insert"

阅读 211

收藏
2020-12-20

共1个答案

小编典典

如果不想将每个条目都提交到数据库,则可以添加以下行:

conn.autocommit = True

因此,您得到的代码将是:

import psycopg2

try:
    conn = psycopg2.connect("dbname='djangostack' user='bitnami' host='localhost' password='password'")
    conn.autocommit = True
except:
    print "Cannot connect to db"

cur = conn.cursor()

try:
    cur.execute("""insert into cnet values ('r', 's', 'e', 'c', 'w', 's', 'i', 'd', 't')""")
except:
    print "Cannot insert"
2020-12-20