| Commit message (Expand) | Author | Age | Files | Lines |
| * | merged 0.2 branch into trunk; 0.1 now in sqlalchemy/branches/rel_0_1 | Mike Bayer | 2006-05-25 | 1 | -997/+0 |
| * | fixed a _get_criterion mismatch, cleaned up types + updated types doc | Mike Bayer | 2006-05-05 | 1 | -0/+16 |
| * | save_obj/delete_obj need to specify column types to binds for primary key cri... | Mike Bayer | 2006-05-04 | 1 | -4/+4 |
| * | "order_by" parameter propigated to inheriting mappers | Mike Bayer | 2006-05-03 | 1 | -0/+2 |
| * | added temporary option "construct_new" to mapper which will cause the mapper ... | Mike Bayer | 2006-04-23 | 1 | -1/+18 |
| * | mapper will verify class inheritance scheme; also will not re-init inherited ... | Mike Bayer | 2006-04-18 | 1 | -1/+3 |
| * | fix for [ticket:158] regarding translate row | Mike Bayer | 2006-04-17 | 1 | -2/+2 |
| * | mapper's querying facilities migrated to new query.Query() object, which can ... | Mike Bayer | 2006-04-06 | 1 | -273/+97 |
| * | added explicit "session" argument to get(), select_whereclause in mapper, as ... | Mike Bayer | 2006-04-06 | 1 | -26/+33 |
| * | added 'entity_name' keyword argument to mapper. a mapper is now associated w... | Mike Bayer | 2006-04-03 | 1 | -42/+61 |
| * | made order_by/group_by construction a little more simplisitc | Mike Bayer | 2006-04-03 | 1 | -1/+1 |
| * | adjustments... | Mike Bayer | 2006-03-31 | 1 | -3/+4 |
| * | tweak... | Mike Bayer | 2006-03-31 | 1 | -7/+7 |
| * | introducing...the mods package ! the SelectResults thing moves as the first mod | Mike Bayer | 2006-03-31 | 1 | -16/+48 |
| * | starting to refactor mapper slightly, adding entity_name, version_id_col, all... | Mike Bayer | 2006-03-31 | 1 | -28/+23 |
| * | Jonas Borgström's fantastic SelectRsults patch that adds dynamic list argume... | Mike Bayer | 2006-03-31 | 1 | -5/+6 |
| * | tweak to mapper to allow inheritance on the same table. | Mike Bayer | 2006-03-27 | 1 | -15/+17 |
| * | added always_refresh flag. when the mapper loads rows, it will pull objects ... | Mike Bayer | 2006-03-26 | 1 | -1/+5 |
| * | rework to expire() to make it smarter. when you expire(), history is immedia... | Mike Bayer | 2006-03-26 | 1 | -4/+4 |
| * | column label generation checks for a conflict against a column named the same... | Mike Bayer | 2006-03-26 | 1 | -2/+2 |
| * | improved translation of rows when proxying rows from one mapper to another. | Mike Bayer | 2006-03-26 | 1 | -8/+16 |
| * | util: the __setitem__ method on historyarraylist was meaningless, surprising ... | Mike Bayer | 2006-03-26 | 1 | -4/+0 |
| * | removed all "tablename + '_' + columname" code and replaced with column._labe... | Mike Bayer | 2006-03-25 | 1 | -2/+2 |
| * | got some support for mapping to a select that only selects some of the column... | Mike Bayer | 2006-03-25 | 1 | -7/+25 |
| * | some more tweaks to get more advanced polymorphic stuff to work | Mike Bayer | 2006-03-24 | 1 | -4/+32 |
| * | added "nest_on" option for Session, so nested transactions can occur mostly a... | Mike Bayer | 2006-03-22 | 1 | -0/+2 |
| * | a few changes to attributes.py to allow faster initialization of object attri... | Mike Bayer | 2006-03-21 | 1 | -0/+4 |
| * | identified more issues with inheritance. mapper inheritance is more closed-m... | Mike Bayer | 2006-03-17 | 1 | -4/+18 |
| * | Fix docstring and exception message in selectone_by | Alexey Shamrin | 2006-03-13 | 1 | -2/+2 |
| * | added selectfirst_by/selectone_by, selectone throws exception if more than o... | Mike Bayer | 2006-03-13 | 1 | -17/+28 |
| * | refactor to Compiled.get_params() to return new ClauseParameters object, a mo... | Mike Bayer | 2006-03-13 | 1 | -2/+2 |
| * | added 'noninherited table' prop to mapper indicating the "lead" table, in the... | Mike Bayer | 2006-03-09 | 1 | -0/+2 |
| * | added identity() method to mapper, to help get the primary key of an instance. | Mike Bayer | 2006-03-08 | 1 | -1/+7 |
| * | added check to relation that will see if the same table is included between t... | Mike Bayer | 2006-03-08 | 1 | -2/+6 |
| * | serious overhaul to get eager loads to work inline with an inheriting mapper,... | Mike Bayer | 2006-03-08 | 1 | -5/+18 |
| * | a mapper with inheritance will place itself as "dependent" on the inherited m... | Mike Bayer | 2006-03-06 | 1 | -3/+7 |
| * | added new 'polymorphic' example. still trying to understand it :) . | Mike Bayer | 2006-03-06 | 1 | -1/+0 |
| * | delete tables in an inheritance rel. requires them in reverse | Mike Bayer | 2006-03-06 | 1 | -1/+3 |
| * | got mapper to receive the onupdates after updating an instance (also properly... | Mike Bayer | 2006-03-05 | 1 | -9/+22 |
| * | added objectstore.refresh(), including supporting changes in mapper, attribut... | Mike Bayer | 2006-03-02 | 1 | -24/+30 |
| * | took out that "TypeError" wrapper since it blows away stack traces and confus... | Mike Bayer | 2006-02-28 | 1 | -5/+1 |
| * | got mapper.using() to work, fixed push/pop mapper, custom session assignments | Mike Bayer | 2006-02-27 | 1 | -4/+27 |
| * | implemented SyncRules for mapper with inheritance relationship, fixes [ticket... | Mike Bayer | 2006-02-26 | 1 | -7/+19 |
| * | place _instance_key on object only when objectstore finally register_clean's ... | Mike Bayer | 2006-02-26 | 1 | -3/+1 |
| * | merged sql_rearrangement branch , refactors sql package to work standalone with | Mike Bayer | 2006-02-25 | 1 | -3/+3 |
| * | get() method needs to use the full table, not just the 'primary' table, to ge... | Mike Bayer | 2006-02-24 | 1 | -1/+1 |
| * | moved iteration of props so that props can set up self-referring backref prop... | Mike Bayer | 2006-02-22 | 1 | -1/+2 |
| * | working on postupdate idea, refactoring to dependency processing | Mike Bayer | 2006-02-21 | 1 | -0/+16 |
| * | some comments, changed SmartProperty to be smarter, UOW | Mike Bayer | 2006-02-19 | 1 | -0/+5 |
| * | exception package added, support throughout | Mike Bayer | 2006-02-19 | 1 | -11/+12 |