psycopg2 db连接错误

时间:2017-08-08 09:08:37

标签: python psycopg2

我试图使用以下内容连接我的postgres数据库:

       conn_string = "host='10.10.1.20' dbname='web' user='" + db_user + "' password='" + db_pass + "'"
       logger.info('Connecting to database -> %s' % (conn_string))
       conn = psycopg2.connect(conn_string)
        cursor = conn.cursor()

我通过了正确的信用测试它manully和它的连接,我可以执行查询,但通过psycopg2.connect我继续得到

Could not connect to the dababase,  name 'cur' is not defined

我错过了什么

0 个答案:

没有答案