Gerhard Häring wrote:
> What are you testing, really? "Normal" Python code should use a
> PostgreSQL DB-API module or a wrapper on top of it, like SQLAlchemy.
>
> Generally, you shouldn't have to drop down to protocol-level functions,
> unless you're developing a PostgreSQL adapter yourself.
>
>
Qian Xu wrote:
Steve Holden wrote:
Without knowing the full details of that particular module I would
hazard a guess that any database errors will raise exceptions in Python.
No exceptions means your database operation worked fine.
result status is not an exception.
It means the information of
Steve Holden wrote:
> Without knowing the full details of that particular module I would
> hazard a guess that any database errors will raise exceptions in Python.
> No exceptions means your database operation worked fine.
result status is not an exception.
It means the information of frontend/bac
Qian Xu wrote:
> Hi All,
>
> I am using the pg module (http://www.pygresql.org/pg.html) for database
> testing.
>
> I have got a problem now:
> I want to check the result status of postgresql database, which can be done
> in php by using pg_result_status()
> (http://w
Hi All,
I am using the pg module (http://www.pygresql.org/pg.html) for database
testing.
I have got a problem now:
I want to check the result status of postgresql database, which can be done
in php by using pg_result_status()
(http://www.phpbuilder.com/manual/en/function.pg-result-status.php
Hi All,
I am using the pg module (http://www.pygresql.org/pg.html) for database
testing.
I have got a problem now:
I want to check the result status of postgresql database, which can be done
in php by using pg_result_status
(http://www.phpbuilder.com/manual/en/function.pg-result-status.php)
How