如何关闭当前函数中另一个函数中定义的数据库连接

问题描述

''' def Database_connection(): 尝试: #Postgresql连接 Postgres_connection = psycopg2.connect(user =“ postgres”,password =“ password”,host =“ 127.0.0.1”, port =“ 5432”,数据库=“ Maps”) Postgres_cursor = Postgres_connection.cursor() 除了(Exception,psycopg2.Error)作为error1: print(“连接到Postgresql时出错”,错误1) 返回Postgres_connection,Postgres_cursor

def Database_connection_close():
    Postgres_connection=Database_connection()
    Postgres_connection.close()

'''

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)