[SQL-CVS] SQLObject/docs SQLObject.txt,1.17,1.18
SQLObject is a Python ORM.
Brought to you by:
ianbicking,
phd
From: <ian...@us...> - 2003-11-12 17:09:58
|
Update of /cvsroot/sqlobject/SQLObject/docs In directory sc8-pr-cvs1:/tmp/cvs-serv16578 Modified Files: SQLObject.txt Log Message: Removed groupBy from the docs Index: SQLObject.txt =================================================================== RCS file: /cvsroot/sqlobject/SQLObject/docs/SQLObject.txt,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** SQLObject.txt 1 Nov 2003 20:28:13 -0000 1.17 --- SQLObject.txt 12 Nov 2003 17:09:52 -0000 1.18 *************** *** 365,374 **** .. _orderBy: ! You can use the keyword arguments `orderBy` and `groupBy` to create ! ``ORDER BY`` and ``GROUP BY`` in the select statements: `orderBy` ! takes a string, which should be the *database* name of the column, or ! a column in the form ``Person.q.firstName``; `groupBy` is similar. ! Both accept lists or tuples of arguments. You can use ``"-colname"`` ! to specify descending order, or call ``MyClass.select().reversed()``. You can use the special class variable `_defaultOrder` to give a --- 365,374 ---- .. _orderBy: ! You can use the keyword arguments `orderBy` to create ``ORDER BY`` in ! the select statements: `orderBy` takes a string, which should be the ! *database* name of the column, or a column in the form ! ``Person.q.firstName``; `groupBy` is similar. Both accept lists or ! tuples of arguments. You can use ``"-colname"`` to specify descending ! order, or call ``MyClass.select().reversed()``. You can use the special class variable `_defaultOrder` to give a |