aboutsummaryrefslogtreecommitdiff
path: root/databases/py-psycopg2/distinfo
Commit message (Collapse)AuthorAgeFilesLines
* - Update to 2.2.1Martin Wilke2010-05-241-3/+3
| | | | | | | | PR: 146800 Submitted by: Daniel Gerzo <danger@freebsd.org> (maintainer) Notes: svn path=/head/; revision=254963
* - Update to 2.0.14Martin Wilke2010-03-141-3/+3
| | | | Notes: svn path=/head/; revision=251030
* - Update to 2.0.13Martin Wilke2009-10-301-3/+3
| | | | | | | | PR: 139665 Submitted by: Sylvio Cesar <scjamorim@bsd.com.br> Notes: svn path=/head/; revision=243533
* - Update to 2.0.12Martin Wilke2009-09-031-3/+3
| | | | Notes: svn path=/head/; revision=240813
* - Update to 2.0.11Martin Wilke2009-05-301-3/+3
| | | | Notes: svn path=/head/; revision=234845
* - Update to 2.0.10Martin Wilke2009-05-101-3/+3
| | | | Notes: svn path=/head/; revision=233595
* - Update to 2.0.9Martin Wilke2009-03-011-3/+3
| | | | Notes: svn path=/head/; revision=229276
* - Update to 2.0.8Martin Wilke2008-09-221-3/+3
| | | | Notes: svn path=/head/; revision=220454
* - Update to 2.0.7Martin Wilke2008-05-161-3/+3
| | | | | | | | PR: 123578 Submitted by: olli hauer <ohauer@gmx.de> Notes: svn path=/head/; revision=213159
* - Update to 2.0.6Martin Wilke2007-07-021-3/+3
| | | | | | | | - Respect NOPORTEXAMPLES - Drop FreeBSD 4.X gruft Notes: svn path=/head/; revision=194658
* - Update to 2.0.5.1Martin Wilke2006-09-021-3/+3
| | | | | | | - 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-101-0/+3
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