]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
fix outdated link into SA docs for Query objects
authorJonathan Ellis <jbellis@gmail.com>
Sun, 23 Jul 2006 04:04:22 +0000 (04:04 +0000)
committerJonathan Ellis <jbellis@gmail.com>
Sun, 23 Jul 2006 04:04:22 +0000 (04:04 +0000)
lib/sqlalchemy/ext/sqlsoup.py

index f8e20a95d376514ead0aa44c1b57475973a87143..58f922e014fb82cffc8e16053a74c802628147ae 100644 (file)
@@ -20,7 +20,7 @@ Creating a SqlSoup gateway is just like creating an SqlAlchemy engine:
 or, you can re-use an existing metadata:
     >>> db = SqlSoup(BoundMetaData(e))
 
-You can specify a schema within the database for your SqlSoup:
+You can optionally specify a schema within the database for your SqlSoup:
     # >>> db.schema = myschemaname
 
 
@@ -46,9 +46,9 @@ select by a key or other field:
     >>> db.users.selectone_by(name='Bhargan Basepair')
     MappedUsers(name='Bhargan Basepair',email='basepair@example.edu',password='basepair',classname=None,admin=1)
 
-All the SqlAlchemy mapper select variants (select, select_by, selectone, selectone_by, selectfirst, selectfirst_by)
+All the SqlAlchemy Query select variants (select, select_by, selectone, selectone_by, selectfirst, selectfirst_by)
 are available.  See the SqlAlchemy documentation for details:
-http://www.sqlalchemy.org/docs/sqlconstruction.myt
+http://www.sqlalchemy.org/docs/datamapping.myt#datamapping_query
 
 
 Modifying objects