Screenshot instructions:
Windows
Mac
Red Hat Linux
Ubuntu
Click URL instructions:
Right-click on ad, choose "Copy Link", then paste here →
(This may not be possible with some types of ads)
From: <subversion@co...> - 2006-12-28 20:29:08
|
Author: phd Date: 2006-12-28 13:29:01 -0700 (Thu, 28 Dec 2006) New Revision: 2162 Modified: SQLObject/docs/News.txt SQLObject/docs/TODO.txt Log: Use DBUtils. Modified: SQLObject/docs/News.txt =================================================================== --- SQLObject/docs/News.txt 2006-12-28 20:21:47 UTC (rev 2161) +++ SQLObject/docs/News.txt 2006-12-28 20:29:01 UTC (rev 2162) @@ -125,6 +125,8 @@ * The reference loop between SQLObject and SQLObjectState eliminated using weak references. +* Reverted the patch that incorrectly handles MySQL error 2006 (SERVER_GONE). + SQLObject 0.7.3 =============== @@ -135,8 +137,6 @@ * Psycopg1 requires port to be a string; psycopg2 requires port to be an int. -* Reverted the patch that incorrectly handles MySQL error 2006 (SERVER_GONE). - SQLObject 0.7.2 =============== Modified: SQLObject/docs/TODO.txt =================================================================== --- SQLObject/docs/TODO.txt 2006-12-28 20:21:47 UTC (rev 2161) +++ SQLObject/docs/TODO.txt 2006-12-28 20:29:01 UTC (rev 2162) @@ -1,12 +1,16 @@ TODO ---- +* Use DBUtils_, especially SolidConnection. + +.. _DBUtils: http://www.webwareforpython.org/DBUtils + * ``_fromDatabase`` currently doesn't support IDs that don't fit into the normal naming scheme. It should do so. You can still use ``_idName`` with ``_fromDatabase``. * More databases supported. There has been interest and some work in - the progress for Oracle. IWBN to have informix and DB2 drivers. + the progress for Oracle. IWBN to have Informix and DB2 drivers. * Better transaction support -- right now you can use transactions for the database, but the object isn't transaction-aware, so |