Categories
Psychopg
psycopg is a PostgreSQL database adapter for the Python programming language (just like pygresql and popy). It supports the full Python DBAPI 2.0 and it is thread safe at level 2. It was designed for heavily multi-threaded applications that create and destroy lots of cursors and make a conspicuous number of concurrent INSERTs or UPDATEs.
Every open Python connection keeps a pool of real (UNIX or TCP/IP) connections to the database. Every time a new cursor is created, one of the unused connections from the pool is used instead of a new connection being opened. That makes psycopg very fast in typical client-server applications that create a servicing thread every time a client request arrives.
Last updated 18 Jul, 2005
Versions
2.0b4 devel
2.0b4 devel released 2004-07-17
- Released: 16 Jul, 2005
- Code Maturity: Stable
1.1.19
1.1.19 stable released 2005-07-16
- Released: 16 Jul, 2005
- Code Maturity: Stable
- Source Archive: http://initd.org/pub/software/psycopg/
- Licenses: GPLv2
- Interfaces: Command Line
User Community and Support
General Resources
Announcement Resources
Support Resources
Development
Developer Resources
- VCS Checkout Command:
:pserver:anonymous@cvs.initd.org:/home/cvs - VCS Repository Webview



