dabo Commit
Revision 3942
Date: 2008-03-04 04:53:50 -0800 (Tue, 04 Mar 2008)
Author: Paul
Trac: http://svn.dabodev.com/trac/dabo/changeset/3942
Changed:
U trunk/dabo/biz/dBizobj.py
Log:
Added docstring to dBizobj.addJoin().
Diff:
Modified: trunk/dabo/biz/dBizobj.py
===================================================================
--- trunk/dabo/biz/dBizobj.py 2008-03-01 01:59:37 UTC (rev 3941)
+++ trunk/dabo/biz/dBizobj.py 2008-03-04 12:53:50 UTC (rev 3942)
@@ -1500,6 +1500,12 @@
def addFrom(self, exp):
return self._CurrentCursor.addFrom(exp)
def addJoin(self, tbl, exp, joinType=None):
+ """Add SQL JOIN clause.
+
+ tbl: the name of the table to join with
+ exp: the join expression
+ joinType examples: "LEFT", "RIGHT", "INNER", "OUTER"
+ """
return self._CurrentCursor.addJoin(tbl, exp, joinType)
def addGroupBy(self, exp):
return self._CurrentCursor.addGroupBy(exp)
_______________________________________________
Post Messages to: [email protected]
Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-dev
Searchable Archives: http://leafe.com/archives/search/dabo-dev
This message: http://leafe.com/archives/byMID/dabo-dev/[EMAIL PROTECTED]