[SQL-CVS] SQLObject/docs News.txt,1.10,1.11
SQLObject is a Python ORM.
Brought to you by:
ianbicking,
phd
From: <ian...@us...> - 2003-11-04 02:35:19
|
Update of /cvsroot/sqlobject/SQLObject/docs In directory sc8-pr-cvs1:/tmp/cvs-serv2783/docs Modified Files: News.txt Log Message: Notes Index: News.txt =================================================================== RCS file: /cvsroot/sqlobject/SQLObject/docs/News.txt,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** News.txt 1 Nov 2003 20:30:37 -0000 1.10 --- News.txt 4 Nov 2003 02:35:16 -0000 1.11 *************** *** 8,11 **** --- 8,31 ---- .. _start: + SQLObject 0.5.1 + =============== + + Released: ... + + Interface Changes + ----------------- + + * Select results no longer have a __len__ method (i.e., you can't do + ``len(Person.select(Person.q.firstName=='Bob'))``). There is now a + ``.count()`` method instead. ``__len__`` gets called implicitly in + several circumstances, like ``list()``, which causes potentially + expensive queries to ``COUNT(*)``. + + Bugs + ---- + + * Objects retrieved from a join now respect the transaction context of + the original instance. + SQLObject 0.5 ============= |