wasm-demo/demo/ermis-f/python_m/cur/1238

24 lines
822 B
Plaintext

From: jeremy at cnri.reston.va.us (Jeremy Hylton)
Date: Tue, 13 Apr 1999 11:20:58 -0400 (EDT)
Subject: bug in PyGreSQL module
Message-ID: <14099.24295.229214.504295@bitdiddle.cnri.reston.va.us>
X-UID: 1238
I found an apparent bug in the Python interface to PostgreSQL. I
tried sending a query to the author but haven't heard back, so I'm
looking for other users to see if they have run into the problem.
I have a table with lots of int fields, some of which of NULL. When I
do a Python query, the PyGreSQL module converts the NULL to 0 instead
of None, which is the value I expected. Is that a reasonable
expectation?
The PyGreSQL module doesn't implement the DB API, but I checked there
anyway. Alas, it didn't say anything about how to handle NULL.
Jeremy