after application close MS Visual C++ runtime library error occurs

From: Peter Irbizon <peterirbizon(at)gmail(dot)com>
To: psycopg(at)postgresql(dot)org
Subject: after application close MS Visual C++ runtime library error occurs
Date: 2012-01-11 14:21:09
Message-ID: CABFuWSzq32Jj--v1LkKvRi83t=t5uHrOsT_7pKL_4hcFtwqfCQ@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: psycopg

Hello, I am using psycopg2 in windows app for example:
import psycopg2
import psycopg2.extras
self.con = psycopg2.connect("dbname= host= user= password= port=");
self.cur = self.con.cursor(cursor_factory=psycopg2.extras.DictCursor)

SELECT = "select something"
self.cur.execute(SELECT)

for row in self.cur:
...

self.cur.close()
self.con.close()

But when I click on exit button in application MS Visual C++ runtime
library error occurs: This application has requested the runtime to
terminate it in unusual way.
What am I doing wrong?

Responses

Browse psycopg by date

  From Date Subject
Next Message Jason Erickson 2012-01-11 21:03:59 Re: after application close MS Visual C++ runtime library error occurs
Previous Message Daniele Varrazzo 2012-01-11 00:27:06 Re: large return resuls