| Commit message (Expand) | Author | Age | Files | Lines |
| * | - query.get() and related functions (like many-to-one lazyloading) | Mike Bayer | 2007-10-16 | 2 | -5/+13 |
| * | - backref remove object operation doesn't fail if the other-side | Mike Bayer | 2007-10-14 | 1 | -1/+5 |
| * | - fixed bugs in determining proper sync clauses from custom inherit | Mike Bayer | 2007-08-30 | 1 | -3/+3 |
| * | - fixed bug where mapper, being linked to a join where one table had | Mike Bayer | 2007-08-10 | 1 | -1/+4 |
| * | - fixed small exception throw bug in Session.merge() | Mike Bayer | 2007-08-05 | 1 | -0/+1 |
| * | - added a check for joining from A->B using join(), along two | Mike Bayer | 2007-07-26 | 1 | -0/+6 |
| * | - merged some more of the SessionTransaction connection-bound checks from 0.4 | Mike Bayer | 2007-07-18 | 1 | -2/+5 |
| * | - fixed max identifier length on postgres (63) [ticket:571] | Gaëtan de Menten | 2007-07-17 | 1 | -1/+1 |
| * | - fixes for connection bound sessions, connection-bound compiled objects via ... | Mike Bayer | 2007-07-16 | 1 | -14/+20 |
| * | - added friendlier error checking for query.get() with too-short pk | Mike Bayer | 2007-07-15 | 1 | -2/+5 |
| * | removed prints | Mike Bayer | 2007-07-15 | 1 | -2/+0 |
| * | - more docs | Mike Bayer | 2007-07-15 | 1 | -7/+16 |
| * | - more docs | Mike Bayer | 2007-07-15 | 1 | -1/+1 |
| * | more query methods, overhauliung docs for forwards 0.4 method | Mike Bayer | 2007-07-15 | 2 | -12/+87 |
| * | - a warning is issued by Mapper when two primary key columns of the | Mike Bayer | 2007-07-13 | 1 | -1/+3 |
| * | - the various "engine" arguments, such as "engine", "connectable", | Mike Bayer | 2007-07-12 | 1 | -21/+23 |
| * | Correct error message for concurrent delete exceptions, fixes #586 | Jason Kirtland | 2007-07-12 | 1 | -1/+1 |
| * | - converted mapper.py unit test to 0.4's four separate mapper.py, query.py, e... | Mike Bayer | 2007-07-12 | 1 | -15/+29 |
| * | further refinements to the previous session.expunge() fix | Mike Bayer | 2007-07-10 | 2 | -12/+6 |
| * | fixed small expunge() bug where object might not be present in session | Mike Bayer | 2007-07-10 | 1 | -1/+1 |
| * | more "column targeting" enhancements..columns have a "depth" from their ultim... | Mike Bayer | 2007-07-10 | 1 | -2/+2 |
| * | - replaced calls for mapper.props in Query with mapper.get_property(), | Mike Bayer | 2007-07-05 | 2 | -21/+31 |
| * | removed superfluous reapplying of options to self | Mike Bayer | 2007-07-04 | 1 | -2/+0 |
| * | improved handling of exceptions upon __init__(): will preserve the stack | Mike Bayer | 2007-06-30 | 1 | -5/+6 |
| * | - adjustments to pool locking test to fail on OSX | Mike Bayer | 2007-06-30 | 1 | -0/+2 |
| * | - fix to the "column_prefix" flag so that the mapper does not | Mike Bayer | 2007-06-27 | 1 | -1/+1 |
| * | - forwards-compatibility with 0.4: added one(), first(), and | Mike Bayer | 2007-06-20 | 1 | -2/+43 |
| * | - added synchronization to the mapper() construction step, to avoid | Mike Bayer | 2007-06-20 | 2 | -14/+26 |
| * | - fixed very stupid bug when deleting items with many-to-many | Mike Bayer | 2007-06-20 | 1 | -3/+3 |
| * | - eager loader calls select_mapper so that poly rulesets get picked up | Mike Bayer | 2007-06-08 | 1 | -1/+1 |
| * | added reset_joinpoint() feature for query, interim until 0.4 | Mike Bayer | 2007-06-02 | 1 | -0/+12 |
| * | - improved support for eagerloading of properties off of mappers that are mapped | Mike Bayer | 2007-05-22 | 1 | -13/+14 |
| * | fix to previous logging fix... | Mike Bayer | 2007-05-20 | 1 | -2/+3 |
| * | - restored logging of "lazy loading clause" under sa.orm.strategies logger, | Mike Bayer | 2007-05-20 | 1 | -2/+3 |
| * | - fixed bug in query.instances() that wouldnt handle more than | Mike Bayer | 2007-05-20 | 1 | -9/+13 |
| * | - the "primary_key" argument to mapper() is propigated to the "polymorphic" | Mike Bayer | 2007-05-17 | 1 | -6/+8 |
| * | - fix to select_by(<propname>=<object instance>) -style joins in conjunction | Mike Bayer | 2007-05-17 | 2 | -2/+8 |
| * | - fix to polymorphic query which allows the original polymorphic_union | Mike Bayer | 2007-05-15 | 1 | -3/+3 |
| * | - parenthesis are applied to clauses via a new _Grouping construct. | Mike Bayer | 2007-05-14 | 1 | -0/+2 |
| * | - session.get() and session.load() propigate **kwargs through to query | Mike Bayer | 2007-05-07 | 1 | -4/+4 |
| * | - many-to-many relationships properly set the type of bind params | Mike Bayer | 2007-05-04 | 1 | -2/+6 |
| * | clarifying some cascade-based unit tests, adding a little more coverage, | Mike Bayer | 2007-05-04 | 2 | -36/+9 |
| * | - "delete-orphan" no longer implies "delete". ongoing effort to | Mike Bayer | 2007-05-03 | 2 | -1/+5 |
| * | - Aliasizer removed. hooray ! | Mike Bayer | 2007-05-02 | 1 | -21/+17 |
| * | - docstring improvements in query | Gaëtan de Menten | 2007-04-30 | 1 | -6/+18 |
| * | - adapted gaetan's eager load adaption code for non-mapped column properties | Mike Bayer | 2007-04-29 | 1 | -8/+25 |
| * | - restored old "column_property()" ORM function (used to be called | Mike Bayer | 2007-04-29 | 3 | -23/+45 |
| * | - fix to using distinct() or distinct=True in combination with | Mike Bayer | 2007-04-29 | 1 | -1/+1 |
| * | removed unneeded closure function | Mike Bayer | 2007-04-27 | 1 | -7/+1 |
| * | removed 'unjoined_table', synonymous with local_table | Mike Bayer | 2007-04-27 | 1 | -2/+0 |