Postgres Psycopg2创建表

Ric*_*nto 3 python database postgresql python-3.6 postgresql-10

我是Postgres和Python的新手.我试图创建一个简单的用户表,但我不知道它为什么不创建.错误消息没有出现,

    #!/usr/bin/python
    import psycopg2

    try:
        conn = psycopg2.connect(database = "projetofinal", user = "postgres", password = "admin", host = "localhost", port = "5432")
    except:
        print("I am unable to connect to the database") 

    cur = conn.cursor()
    try:
        cur.execute("CREATE TABLE test (id serial PRIMARY KEY, num integer, data varchar);")
    except:
        print("I can't drop our test database!")

    conn.close()
    cur.close()
Run Code Online (Sandbox Code Playgroud)

Mat*_*att 15

你忘了提交数据库了!

import psycopg2

try:
    conn = psycopg2.connect(database = "projetofinal", user = "postgres", password = "admin", host = "localhost", port = "5432")
except:
    print("I am unable to connect to the database") 

cur = conn.cursor()
try:
    cur.execute("CREATE TABLE test (id serial PRIMARY KEY, num integer, data varchar);")
except:
    print("I can't drop our test database!")

conn.commit() # <--- makes sure the change is shown in the database
conn.close()
cur.close()
Run Code Online (Sandbox Code Playgroud)

`

  • 或者,在连接之前`conn.autocommit = True`也可以完成工作 (2认同)