diff options
| author | Jonathan Ellis <jbellis@gmail.com> | 2006-11-01 05:28:43 +0000 |
|---|---|---|
| committer | Jonathan Ellis <jbellis@gmail.com> | 2006-11-01 05:28:43 +0000 |
| commit | fcedb47e9022ceb18fab68e054c415db933d0b89 (patch) | |
| tree | 534ae3ecf2ee5fbe4df9ffeba593dae41f4264af /doc | |
| parent | ed33944f316d9dfa1f83cc11c160427e89b743ea (diff) | |
| download | sqlalchemy-fcedb47e9022ceb18fab68e054c415db933d0b89.tar.gz | |
link to SqlSoup docs on the wiki
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/build/content/plugins.txt | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/doc/build/content/plugins.txt b/doc/build/content/plugins.txt index 565a3aea0..c5b094e54 100644 --- a/doc/build/content/plugins.txt +++ b/doc/build/content/plugins.txt @@ -430,13 +430,11 @@ SqlSoup creates mapped classes on the fly from tables, which are automatically r >>> from sqlalchemy.ext.sqlsoup import SqlSoup >>> soup = SqlSoup('sqlite:///') - >>> users = soup.users.select() - >>> users.sort() - >>> users - [Class_Users(name='Bhargan Basepair',email='basepair@example.edu',password='basepair',classname=None,admin=1), - Class_Users(name='Joe Student',email='student@example.edu',password='student',classname=None,admin=0)] + >>> db.users.select(order_by=[db.users.c.name]) + [MappedUsers(name='Bhargan Basepair',email='basepair@example.edu',password='basepair',classname=None,admin=1), + MappedUsers(name='Joe Student',email='student@example.edu',password='student',classname=None,admin=0)] -Read more about SqlSoup on [Jonathan Ellis' Blog](http://spyced.blogspot.com/2006/04/introducing-sqlsoup.html). +Full SqlSoup documentation is on the [SQLAlchemy Wiki](http://www.sqlalchemy.org/trac/wiki/SqlSoup). ### ProxyEngine |
