|
Home > Archive > PostgreSQL Administration > December 2005 > using pgdb and python
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
using pgdb and python
|
|
| David Bear 2005-12-08, 8:25 pm |
| I am using python to collect data and insert it into postgresql. I am
hoping there will be someone on this list that has used python for
this becuase all the books and documentation on the subject seem
sparse.
I am using pgdb. I know psycpg is also a DBI compliant interface for
postgresql. If there is a recommendation as to which one is better,
I'd like to hear it. (better for me now means that it has better
documentation, sample code, etc.)
I am constructing a sql insert statement (parameterized) and would
like to catch meaningfull exceptions like, keyviolation (on the
insert) or other postgresql exceptions that might happen. So far the
only exception I see from pgdb when I do a full traceback and anlyze
that. What I would like is something like
try:
cursor.execute(sql, parameters)
except KeyViolation:
except DataConversionError:
and such like.
I would really appreciate any pointers you might have on using python
with postgresql.
thanks.
--
David Bear
phone: 480-965-8257
fax: 480-965-9189
College of Public Programs/ASU
Wilson Hall 232
Tempe, AZ 85287-0803
"Beware the IP portfolio, everyone will be suspect of trespassing"
---------------------------(end of broadcast)---------------------------
TIP 3: Have you checked our extensive FAQ?
http://www.postgresql.org/docs/faq
| |
| Joshua D. Drake 2005-12-08, 8:25 pm |
|
> I am using pgdb. I know psycpg is also a DBI compliant interface for
> postgresql. If there is a recommendation as to which one is better,
> I'd like to hear it. (better for me now means that it has better
> documentation, sample code, etc.)
I know nothing of pgdb but Command Prompt uses psycopg exclusively and
it works very well.
>
> I am constructing a sql insert statement (parameterized) and would
> like to catch meaningfull exceptions like, keyviolation (on the
> insert) or other postgresql exceptions that might happen. So far the
> only exception I see from pgdb when I do a full traceback and anlyze
> that. What I would like is something like
>
> try:
> cursor.execute(sql, parameters)
> except KeyViolation:
>
> except DataConversionError:
>
> and such like.
>
> I would really appreciate any pointers you might have on using python
> with postgresql.
I would look at psycopg and specifically psycopg2.
Joshua D. Drake
>
> thanks.
>
--
The PostgreSQL Company - Command Prompt, Inc. 1.503.667.4564
PostgreSQL Replication, Consulting, Custom Development, 24x7 support
Managed Services, Shared and Dedicated Hosting
Co-Authors: PLphp, PLperl, ODBCng - http://www.commandprompt.com/
---------------------------(end of broadcast)---------------------------
TIP 1: if posting/reading through Usenet, please send an appropriate
subscribe-nomail command to majordomo@postgresql
.org so that your
message can get through to the mailing list cleanly
|
|
|
|
|