[SQL-CVS] SQLObject/docs News.txt,1.7,1.8
SQLObject is a Python ORM.
Brought to you by:
ianbicking,
phd
From: <ian...@us...> - 2003-06-26 08:34:40
|
Update of /cvsroot/sqlobject/SQLObject/docs In directory sc8-pr-cvs1:/tmp/cvs-serv4218/docs Modified Files: News.txt Log Message: updated Index: News.txt =================================================================== RCS file: /cvsroot/sqlobject/SQLObject/docs/News.txt,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** News.txt 30 May 2003 02:20:22 -0000 1.7 --- News.txt 26 Jun 2003 08:34:38 -0000 1.8 *************** *** 72,75 **** --- 72,81 ---- the exception in either case). + * Can order by descending order, with the `reversed` option to + the `select` method, or by prefixing the column with a ``"-"``. + + * Ordering with joins works better -- you can order with multiple + columns, as well as descending ordering. + Col and Join ~~~~~~~~~~~~ *************** *** 130,133 **** --- 136,142 ---- * ``ForeignKey`` columns return None if the associated column is NULL in the database (used to just act weird). + + * Instantiating an object with an id of None will give an error, + instead of just acting weird. Internal |