[SQL-CVS] r4296 - SQLObject/branches/0.14/sqlobject
SQLObject is a Python ORM.
Brought to you by:
ianbicking,
phd
From: <sub...@co...> - 2010-12-15 19:54:04
|
Author: phd Date: Wed Dec 15 12:53:56 2010 New Revision: 4296 Log: LEFT JOINs were implemented long ago. Modified: SQLObject/branches/0.14/sqlobject/sqlbuilder.py Modified: SQLObject/branches/0.14/sqlobject/sqlbuilder.py ============================================================================== --- SQLObject/branches/0.14/sqlobject/sqlbuilder.py Tue Dec 7 06:13:24 2010 (r4295) +++ SQLObject/branches/0.14/sqlobject/sqlbuilder.py Wed Dec 15 12:53:56 2010 (r4296) @@ -49,9 +49,7 @@ types (None==NULL). There are a number of DB-specific SQL features that this does not -implement. There are a bunch of normal ANSI features also not present --- particularly left joins, among others. You may wish to only use -this to generate ``WHERE`` clauses. +implement. There are a bunch of normal ANSI features also not present. See the bottom of this module for some examples, and run it (i.e. ``python sql.py``) to see the results of those examples. |