使用python创建Postgres数据库

时间:2015-12-27 19:34:55

标签: python postgresql psycopg2

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

2 个答案:

答案 0 :(得分:48)

使用ISOLATION_LEVEL_AUTOCOMMIT,psycopg2扩展程序:

  

发出命令时没有启动事务,也没有commit()或   需要rollback()。

import psycopg2
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()
cur.execute("CREATE DATABASE %s  ;" % self.db_name)

答案 1 :(得分:16)

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

import psycopg2

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

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