如何关闭psycopg2和postgresql之间的旧连接?

问题描述 投票:0回答:1

我一直在使用psycopg2来控制多模块模型(我的博士论文)中的本地postgresql服务器。

一段时间后,我在模型中出现错误并且它保持了一个ghost连接,当我使用与postgresql服务器的新连接运行模型时,这会引起麻烦,它会调用模型的其他模块。

在我的计算机上同时显示postgresql的多个连接,总共十个。较旧的连接在属性中具有35天前的最后修改。

我卸载了python,postgresql并删除了数据库,之后我又重新安装了一切,问题仍然存在。

如果有任何客人或帮助,我很感激。

python-2.7 postgresql psycopg2
1个回答
2
投票

如果您是超级用户,则可以按照答案here.中的说明关闭现有连接

根据您的应用程序,您还可以查看修改应用程序连接到数据库的方式。创建一个名为mydb.py的文件,例如:

import psycopg2
import psycopg2.pool
from contextlib import contextmanager

dbpool = psycopg2.pool.ThreadedConnectionPool(host=<<YourHost>>,
                                          port=<<YourPort>>,
                                          dbname=<<YourDB>>,
                                          user=<<YourUser>>,
                                          password=<<yourpassword>>,
                                          )

@contextmanager
def db_cursor():
    conn = dbpool.getconn()
    try:
        with conn.cursor() as cur:
            yield cur
            conn.commit()
    except:
        conn.rollback()
        raise
    finally:
        dbpool.putconn(conn)

然后您的代码可以使用:

import mydb

def myfunction():
    with mydb.db_cursor() as cur:
        cur.execute("""Select * from blahblahblah...""")
© www.soinside.com 2019 - 2024. All rights reserved.