summaryrefslogtreecommitdiff
path: root/databases/py-psycopg2 (follow)
Commit message (Collapse)AuthorAgeFilesLines
* - Remove unnecessary dependenciesMartin Wilke2007-12-221-2/+0
| | | | | | | Submitted by: Josh Paetzel via irc Notes: svn path=/head/; revision=204374
* - Remove the DESTDIR modifications from individual ports as we have a new,Gabor Kovesdan2007-08-041-2/+2
| | | | | | | | | | fully chrooted DESTDIR, which does not need such any more. Sponsored by: Google Summer of Code 2007 Approved by: portmgr (pav) Notes: svn path=/head/; revision=197075
* - Update to 2.0.6Martin Wilke2007-07-024-40/+37
| | | | | | | | - Respect NOPORTEXAMPLES - Drop FreeBSD 4.X gruft Notes: svn path=/head/; revision=194658
* - Fix build with gcc 4.XMartin Wilke2007-01-182-0/+12
| | | | | | | | PR: 108063 Submitted by: trasz <trasz@pin.if.uz.zgora.pl> Notes: svn path=/head/; revision=182679
* - Add backup MASTER_SITESMartin Wilke2006-11-221-1/+3
| | | | Notes: svn path=/head/; revision=177822
* - Update to 2.0.5.1Martin Wilke2006-09-022-4/+4
| | | | | | | - Changlog here: http://initd.org/pub/software/psycopg/ChangeLog Notes: svn path=/head/; revision=171869
* psycopg2 is a PostgreSQL database adapter for the Python programming language.Martin Wilke2006-08-104-0/+116
It was written from scratch with the aim of being small, fast and stable. It supports the full Python DBAPI-2.0 and is thread safe. psycopg2 is different from the other database adapter because 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, a new connection does not need to be opened; instead one of the unused connections from the pool is used. That makes psycopg very fast in typical client-server applications that create a servicing thread every time a client request arrives. WWW: http://initd.org/projects/psycopg2 Approved by: krion (mentor) Notes: svn path=/head/; revision=170291