Problems in queries

From: "David Anderson" <zerty(dot)david(at)gmail(dot)com>
To: pgsql-general(at)postgresql(dot)org
Subject: Problems in queries
Date: 2008-05-03 23:05:30
Message-ID: 5dc598e30805031605p700a9f64x16a66782abef2dc8@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Hi all
I have this function:
def checkNameDob(self, name, dob):
cur = self.conn.cursor();

sql = "SELECT * from patient WHERE fn_pat = %s"
cur.execute(sql,(name))
rows = cur.fetchall()

It seems to work fine, But I'm getting this exception:
psycopg2.ProgrammingError: current transaction is aborted, commands ignored
until end of transaction block
at: cur.execute(sql)

What's the problem?
thx

ps: fn_pat is the column of the db, name is the string passed in the
function parameter.
if I type:
"SELECT * from patient WHERE fn_pat = 'david' "
in the psql on console it works well...

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Adrian Klaver 2008-05-04 00:02:43 Re: Problems in queries
Previous Message Ge Cong 2008-05-03 20:53:36 Re: large query by offset and limt