Re: [Webware-discuss] MiddleKit: Postgres a Relational Data

2002-04-08 Thread Ernesto Revilla
1.dll, but for development this won't be a problem. Regards, Erny - Original Message - From: "Steve Waterbury" <[EMAIL PROTECTED]> To: "Ernesto Revilla" <[EMAIL PROTECTED]> Sent: Saturday, April 06, 2002 12:13 AM Subject: Re: [Webware-discuss] MiddleK

Re: [Webware-discuss] MiddleKit: Postgres a Relational Data

2002-04-05 Thread Gregory Brauer
Yikes. Well, I did the port many months ago, and sent it to Chuck for integration into the WebWare core (there was one change to be made to the core, and the test suite had to be updated) but it looks like he still hasn't gotten around to it. I ended up not using my code, as our performance req

Re: Re: [Webware-discuss] MiddleKit: Postgres a Relational Data

2002-04-05 Thread Ernesto Revilla
Dear Greg, I think, I'm repeating all your work, as I didn't find a PostgreSQL-Adaptor for MiddleKit. So we should decide, and simply post patches to whatever we need. As there are now 4 different python-DB-API 2.0 modules (PyGreSQL, PoPy, PsycoPg and pyPgSQL), perhaps we can try to import all

Re: [Webware-discuss] MiddleKit: Postgres a Relational Data

2002-04-04 Thread Gregory Brauer
[EMAIL PROTECTED] wrote: > Hi all, > > with the pyPgSQL some values are not returned as basic Python types. For Postgres >'bigint' I get a PgInt8 type. > Hi, Its been a very long time, but I was the one who wrote this code. Here is the discussion that I had with Chuck at the time: At

[Webware-discuss] MiddleKit: Postgres a Relational Data

2002-04-04 Thread aerd
Hi all, with the pyPgSQL some values are not returned as basic Python types. For Postgres 'bigint' I get a PgInt8 type. The problem: with these types, some type comparisons (created by PythonGenerator.py) and some assert statements fail because type(PgInt8Type)!=type(0L). Looking around, I f