From: | Andrew Kuchling <akuchlin(at)mems-exchange(dot)org> |
---|---|
To: | pgsql-interfaces(at)postgresql(dot)org |
Subject: | pgdb.py fetching same row multiple times |
Date: | 2001-04-02 20:07:00 |
Message-ID: | E14kAbM-0000uW-00@ute.cnri.reston.va.us |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-interfaces |
With the 7.1RC1 code, plus two unrelated fixes to pgdb.py that are in
the CVS, the .fetch() method of pgdbCursor always returns the first
row, not each successive row. For example, this test program:
import pgdb
db = pgdb.connect('ute.cnri.reston.va.us:mems:akuchlin')
c = db.cursor()
c.execute('select * from fab_providers')
print c.fetchone()
print c.fetchone()
db.close()
will print the same row twice:
ute akuchlin>python /tmp/t.py
['CNF', 'Cornell Nanofabrication Facility', ... ]
['CNF', 'Cornell Nanofabrication Facility', ... ]
ute akuchlin>
The first column is a primary key, so the table doesn't actually
contain two duplicate rows.
Has anyone else noted this? Anyone have a fix?
(Note that this doesn't apply to the basic interface implemented by
pgmodule.c; the problem is only with the pgdb.py wrapper to provide a
DB-API interface.)
--amk
From | Date | Subject | |
---|---|---|---|
Next Message | Jerry Asher | 2001-04-03 00:16:11 | trouble finding the object method driver.... |
Previous Message | László Tibor | 2001-04-02 09:45:56 | RE: connect to MS SQL server |