我是 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()