PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

Python psycopg2 non si inserisce nella tabella postgresql

Se non vuoi impegnare ogni voce nel database, puoi aggiungere la seguente riga:

conn.autocommit = True

Quindi il tuo codice risultante sarebbe:

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"