gpt4 book ai didi

python - 使用 python 创建 Postgres 数据库

转载 作者:IT老高 更新时间:2023-10-28 21:59:27 24 4
gpt4 key购买 nike

我想使用 Python 创建 Postgres 数据库。

con = psql.connect(dbname='postgres',
user=self.user_name, host='',
password=self.password)

cur = con.cursor()
cur.execute("CREATE DATABASE %s ;" % self.db_name)

我收到以下错误:

InternalError: CREATE DATABASE cannot run inside a transaction block

我正在使用 psycopg2 进行连接。我不明白有什么问题。我想要做的是连接到数据库(Postgres):

psql -postgres -U UserName

然后创建另一个数据库:

create database test;

这是我通常做的事情,我想通过创建 Python 脚本来自动化它。

最佳答案

使用 ISOLATION_LEVEL_AUTOCOMMIT ,一个 psycopg2 扩展:

No transaction is started when command are issued and no commit() or rollback() is required.

import psycopg2
from psycopg2 import sql
from psycopg2.extensions import ISOLATION_LEVEL_AUTOCOMMIT # <-- ADD THIS LINE

con = psycopg2.connect(dbname='postgres',
user=self.user_name, host='',
password=self.password)

con.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT) # <-- ADD THIS LINE

cur = con.cursor()

# Use the psycopg2.sql module instead of string concatenation
# in order to avoid sql injection attacs.
cur.execute(sql.SQL("CREATE DATABASE {}").format(
sql.Identifier(self.db_name))
)

关于python - 使用 python 创建 Postgres 数据库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34484066/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com