当前位置:  开发笔记 > 编程语言 > 正文

使用python创建Postgres数据库

如何解决《使用python创建Postgres数据库》经验,为你挑选了2个好方法。

我想用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脚本来自动执行此操作.



1> Tommaso Di B..:

使用ISOLATION_LEVEL_AUTOCOMMIT,一个psycopg2扩展:

发出命令时不启动任何事务,并且不需要commit()或rollback().

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))
    )



2> Álvaro Marco..:

如另一个答案所示,连接必须处于自动提交模式.使用它的另一种方法psycopg2是通过autocommit属性:

import psycopg2

con = psycopg2.connect(...)
con.autocommit = True

cur = con.cursor()
cur.execute('CREATE DATABASE {};'.format(self.db_name))

推荐阅读
LEEstarmmmmm
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有