我正在使用以下内容尝试将记录插入到 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"