| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
| |
PR: 146800
Submitted by: Daniel Gerzo <danger@freebsd.org> (maintainer)
Notes:
svn path=/head/; revision=254963
|
|
|
|
| |
Notes:
svn path=/head/; revision=251030
|
|
|
|
|
|
|
|
| |
PR: 139665
Submitted by: Sylvio Cesar <scjamorim@bsd.com.br>
Notes:
svn path=/head/; revision=243533
|
|
|
|
| |
Notes:
svn path=/head/; revision=240813
|
|
|
|
| |
Notes:
svn path=/head/; revision=234845
|
|
|
|
| |
Notes:
svn path=/head/; revision=233595
|
|
|
|
| |
Notes:
svn path=/head/; revision=229276
|
|
|
|
| |
Notes:
svn path=/head/; revision=220454
|
|
|
|
|
|
|
|
| |
PR: 123578
Submitted by: olli hauer <ohauer@gmx.de>
Notes:
svn path=/head/; revision=213159
|
|
|
|
|
|
|
|
| |
- Respect NOPORTEXAMPLES
- Drop FreeBSD 4.X gruft
Notes:
svn path=/head/; revision=194658
|
|
|
|
|
|
|
| |
- Changlog here: http://initd.org/pub/software/psycopg/ChangeLog
Notes:
svn path=/head/; revision=171869
|
|
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
|