PostgreSQL database adapter for the Python programming language
Go to file
James Henstridge f64cbeda46 * tests/test_transaction.py (DeadlockSerializationTestCase): port
over some tests for serialisation and deadlock errors,
	demonstrating that TransactionRollbackError is generated.
	(QueryCancelationTests): add a test to show that
	QueryCanceledError is raised on statement timeouts.

	* psycopg2da/adapter.py (_handle_psycopg_exception): rather than
	checking exception messages, check for TransactionRollbackError.

	* psycopg/pqpath.c (exception_from_sqlstate): return
	TransactionRollbackError for 40xxx errors, and QueryCanceledError
	for 57014 errors.
	(pq_raise): If we are using an old server, use
	TransactionRollbackError if the error message contains "could not
	serialize" or "deadlock detected".

	* psycopg/psycopgmodule.c (_psyco_connect_fill_exc): remove
	function, since we no longer need to store pointers to the
	exceptions in the connection.  This also fixes a reference leak.
	(psyco_connect): remove _psyco_connect_fill_exc() function call.

	* psycopg/connection.h (connectionObject): remove exception
	members from struct.

	* psycopg/connection_type.c (connectionObject_getsets): modify the
	exception attributes on the connection object from members to
	getsets.  This reduces the size of the struct.

	* lib/extensions.py: import the two new extensions.

	* psycopg/psycopgmodule.c (exctable): add new QueryCanceledError
	and TransactionRollbackError exceptions.
2008-01-16 05:14:24 +00:00
debian Debian release 2.0.5.1-2. 2006-10-03 00:23:57 +00:00
doc Added a cursor subclass example. 2006-01-12 17:41:00 +00:00
examples Various fixes, now all examples work. 2007-04-13 14:07:11 +00:00
lib * tests/test_transaction.py (DeadlockSerializationTestCase): port 2008-01-16 05:14:24 +00:00
psycopg * tests/test_transaction.py (DeadlockSerializationTestCase): port 2008-01-16 05:14:24 +00:00
psycopg2da * tests/test_transaction.py (DeadlockSerializationTestCase): port 2008-01-16 05:14:24 +00:00
sandbox Added support for NULL in arrays (closes: #154) 2007-01-19 14:08:06 +00:00
scripts Added aync.txt to distribution. 2005-11-29 12:01:46 +00:00
tests * tests/test_transaction.py (DeadlockSerializationTestCase): port 2008-01-16 05:14:24 +00:00
ZPsycopgDA DA version patch. 2007-12-21 00:45:01 +00:00
AUTHORS Undo of wrong commit of 1.1.x source code over 2.x. 2004-10-29 16:15:45 +00:00
ChangeLog * tests/test_transaction.py (DeadlockSerializationTestCase): port 2008-01-16 05:14:24 +00:00
INSTALL Aggressive threading on fetch (and a new bug!) 2007-09-19 13:39:48 +00:00
LICENSE Fixed problem with "fractionary" time zones (Closes: #78). 2005-12-11 07:50:27 +00:00
Makefile Added 'make check' target, running all the available tests. 2007-11-11 10:40:12 +00:00
MANIFEST.in Fixed both Python 2.5 and 64 bit problems. 2007-04-10 06:36:18 +00:00
NEWS Patchset copy_expert 1/5. 2007-05-29 08:13:40 +00:00
psycopg2.mdp DA version patch. 2007-12-21 00:45:01 +00:00
psycopg2.mds Aggressive threading on fetch (and a new bug!) 2007-09-19 13:39:48 +00:00
psycopg2.usertasks Aggressive threading on fetch (and a new bug!) 2007-09-19 13:39:48 +00:00
README Fixing SVN transition. 2006-03-30 02:20:11 +00:00
setup.cfg Aggressive threading on fetch (and a new bug!) 2007-09-19 13:39:48 +00:00
setup.py Various fixes, now all examples work. 2007-04-13 14:07:11 +00:00

psycopg - Python-PostgreSQL Database Adapter
********************************************

psycopg is a PostgreSQL database adapter for the Python programming
language. This is version 2, a complete rewrite of the original code to
provide new-style classes for connection and cursor objects and other
sweet candies. Like the original, psycopg 2 was written with the aim of
being very small and fast, and stable as a rock.

psycopg 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. psycopg 2 also provide full asycronous operations for the really
brave programmer.

There are confirmed reports of psycopg 1.x compiling and running on Linux
and FreeBSD on i386, Solaris, MacOS X and win32 architectures. psycopg 2
does not introduce build-wise incompatible changes so it should be able to
compile on all architectures just as its predecessor did.

Now go read the INSTALL file. More information about psycopg extensions to
the DBAPI-2.0 is available in the files located in the doc/ direcory.

psycopg is free software ("free as in freedom" but I like beer too.)
Licensing information is available in the LICENSE file.


Contributors
------------

A short list of contributors to psycopg2 follows (if you feel you belong
to this list and you can't find yourself here just drop me a mail):

 * Kudos to piro for all the documentation work.

 * Peter Fein contributed a logging connection/cursor class that even if it
   was not used directly heavily influenced the implementation currently in
   psycopg2.extras.