[SQL-CVS] r4298 - SQLObject/trunk/sqlobject
SQLObject is a Python ORM.
Brought to you by:
ianbicking,
phd
From: <sub...@co...> - 2010-12-15 20:14:20
|
Author: phd Date: Wed Dec 15 12:55:59 2010 New Revision: 4298 Log: Merged revision 4296 from branch 0.14: LEFT JOINs were implemented long ago. Modified: SQLObject/trunk/sqlobject/sqlbuilder.py Modified: SQLObject/trunk/sqlobject/sqlbuilder.py ============================================================================== --- SQLObject/trunk/sqlobject/sqlbuilder.py Wed Dec 15 12:55:34 2010 (r4297) +++ SQLObject/trunk/sqlobject/sqlbuilder.py Wed Dec 15 12:55:59 2010 (r4298) @@ -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. |