[SQL-CVS] r4303 - SQLObject/trunk/docs
SQLObject is a Python ORM.
Brought to you by:
ianbicking,
phd
From: <sub...@co...> - 2010-12-15 23:01:06
|
Author: phd Date: Wed Dec 15 16:00:59 2010 New Revision: 4303 Log: Corrected a misspelling. Modified: SQLObject/trunk/docs/SQLBuilder.txt Modified: SQLObject/trunk/docs/SQLBuilder.txt ============================================================================== --- SQLObject/trunk/docs/SQLBuilder.txt Wed Dec 15 15:48:51 2010 (r4302) +++ SQLObject/trunk/docs/SQLBuilder.txt Wed Dec 15 16:00:59 2010 (r4303) @@ -83,7 +83,7 @@ >> query = connection.sqlrepr(select) # Convert to SQL string: >> # SELECT name, AVG(salary) FROM employees GROUP BY name >> rows = connection.queryAll(query) # Execute the query - >> # and get back the reuslt as a list of rows + >> # and get back the result as a list of rows >> # where every row is a sequence of length 2 (name and average salary) .. _`higher-level API`: SQLObject.html |