Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | - mega example cleanup | Mike Bayer | 2010-01-19 | 4 | -258/+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 | ||||
* | Added in Examples into the test suite so they get exercised regularly. ↵ | Michael Trier | 2009-07-27 | 2 | -1/+1 |
| | | | | Cleaned up some deprecation warnings in the examples. | ||||
* | Lots of fixes to the code examples to specify imports explicitly. | Michael Trier | 2009-03-31 | 3 | -27/+27 |
| | | | | | | | 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. | ||||
* | merging 0.4 branch to trunk. see CHANGES for details. 0.3 moves to ↵ | Mike Bayer | 2007-07-27 | 3 | -5/+9 |
| | | | | maintenance branch in branches/rel_0_3. | ||||
* | - Deprecated DynamicMetaData- use ThreadLocalMetaData or MetaData instead | Jason Kirtland | 2007-07-06 | 2 | -2/+2 |
| | | | | | - Deprecated BoundMetaData- use MetaData instead - Removed DMD and BMD from documentation | ||||
* | documented eager load fix | Mike Bayer | 2007-06-08 | 1 | -1/+1 |
| | |||||
* | - eager loader calls select_mapper so that poly rulesets get picked up | Mike Bayer | 2007-06-08 | 1 | -10/+3 |
| | | | | - changed polymorph example to use a single set of outerjoins | ||||
* | - added an assertion within the "cascade" step of ORM relationships to check | Mike Bayer | 2006-11-03 | 1 | -2/+1 |
| | | | | | | | | 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 | ||||
* | echo=True | Mike Bayer | 2006-07-18 | 1 | -1/+1 |
| | |||||
* | improvements/fixes to session cascade iteration, | Mike Bayer | 2006-06-05 | 1 | -0/+1 |
| | | | | fixes to entity_name propigation | ||||
* | merged 0.2 branch into trunk; 0.1 now in sqlalchemy/branches/rel_0_1 | Mike Bayer | 2006-05-25 | 4 | -242/+222 |
| | |||||
* | added explicit "session" argument to get(), select_whereclause in mapper, as ↵ | Mike Bayer | 2006-04-06 | 1 | -3/+3 |
| | | | | well as throughout the call-chain for those. lazy loader honors the "session" of the parent object, + added simple unit test | ||||
* | put proper return type | Mike Bayer | 2006-04-03 | 1 | -1/+1 |
| | |||||
* | improved translation of rows when proxying rows from one mapper to another. | Mike Bayer | 2006-03-26 | 1 | -3/+4 |
| | |||||
* | got some support for mapping to a select that only selects some of the ↵ | Mike Bayer | 2006-03-25 | 1 | -2/+0 |
| | | | | columns of an underlying table | ||||
* | some more tweaks to get more advanced polymorphic stuff to work | Mike Bayer | 2006-03-24 | 2 | -7/+146 |
| | |||||
* | a few tweaks and the polymorph example can also use eager loading | Mike Bayer | 2006-03-20 | 1 | -2/+2 |
| | |||||
* | got dilbert to be properly modified.... | Mike Bayer | 2006-03-19 | 1 | -1/+1 |
| | |||||
* | added 'noninherited table' prop to mapper indicating the "lead" table, in ↵ | Mike Bayer | 2006-03-09 | 1 | -2/+2 |
| | | | | | | | | the case of inheritance. relations now create priamry/secondary joins against that lead table. if you want to create it against an inherited table, use explicit join conditions. added 'correlate' argument to CompoundSelect to get polymorph example working again. | ||||
* | a mapper with inheritance will place itself as "dependent" on the inherited ↵ | Mike Bayer | 2006-03-06 | 1 | -15/+27 |
| | | | | mapper; even though this is not usually needed, it allows certain exotic combinations of mapper setups to work (i.e. the one in the polymorph example) | ||||
* | added new 'polymorphic' example. still trying to understand it :) . | Mike Bayer | 2006-03-06 | 1 | -0/+131 |
fixes to relation to enable it to locate "direction" more consistently with inheritance relationships more tweaks to parenthesizing subqueries, unions, etc. |