summaryrefslogtreecommitdiff
path: root/examples/vertical/vertical.py
Commit message (Collapse)AuthorAgeFilesLines
* - mega example cleanupMike Bayer2010-01-191-201/+0
| | | | | | - added READMEs to all examples in each __init__.py and added to sphinx documentation - added versioning example - removed vertical/vertical.py, the dictlikes are more straightforward
* Lots of fixes to the code examples to specify imports explicitly.Michael Trier2009-03-311-2/+3
| | | | | | | Explicit imports make it easier for users to understand the examples. Additionally a lot of the examples were fixed to work with the changes in the 0.5.x code base. One small correction to the Case expression. Thanks a bunch to Adam Lowry! Fixes #717.
* - fixed up vertical.pyMike Bayer2008-06-281-107/+133
| | | | | | - Fixed query.join() when used in conjunction with a columns-only clause and an SQL-expression ON clause in the join.
* - fixed wrong varname in session exception throwMike Bayer2007-12-051-5/+4
| | | | - fixed vertical example to just use a scoped session
* merging 0.4 branch to trunk. see CHANGES for details. 0.3 moves to ↵Mike Bayer2007-07-271-10/+5
| | | | maintenance branch in branches/rel_0_3.
* - Deprecated DynamicMetaData- use ThreadLocalMetaData or MetaData insteadJason Kirtland2007-07-061-2/+2
| | | | | - Deprecated BoundMetaData- use MetaData instead - Removed DMD and BMD from documentation
* added proper cascade for deletesMike Bayer2007-06-301-1/+5
|
* - added an assertion within the "cascade" step of ORM relationships to checkMike Bayer2006-11-031-5/+4
| | | | | | | | that the class of object attached to a parent object is appropriate (i.e. if A.items stores B objects, raise an error if a C is appended to A.items) - new extension sqlalchemy.ext.associationproxy, provides transparent "association object" mappings. new example examples/association/proxied_association.py illustrates. - some example cleanup
* tweak for Table.create() not having a return valueMike Bayer2006-10-211-3/+5
|
* - "custom list classes" is now implemented via the "collection_class"Mike Bayer2006-10-031-4/+1
| | | | | keyword argument to relation(). the old way still works but is deprecated [ticket:212]
* late compilation of mappers. now you can create mappers in any order, and ↵Mike Bayer2006-06-081-0/+1
| | | | they will compile their internal state when first used in a query or flush operation (or their props or 'c'/'columns' attributes are used). includes various cleanups and fixes in support of the change, including some unit test changes, additional unit tests.
* merged 0.2 branch into trunk; 0.1 now in sqlalchemy/branches/rel_0_1Mike Bayer2006-05-251-17/+30
|
* a cool example that illustrates vertical table storage, and objects that ↵Mike Bayer2006-03-261-0/+164
automatically configure themselves for this type of storage