| 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 | 9 | -4139/+0 |
* | fixed a _get_criterion mismatch, cleaned up types + updated types doc | Mike Bayer | 2006-05-05 | 2 | -16/+17 |
* | added from_obj option to select() | Mike Bayer | 2006-05-05 | 1 | -3/+6 |
* | 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 |
* | commented out default schema name check | Mike Bayer | 2006-04-26 | 1 | -1/+1 |
* | removed a "swap" from the lazy binary clause. added a test for that condition... | Mike Bayer | 2006-04-24 | 1 | -2/+2 |
* | lazyload clause calculation uses anonymous keynames for the bind parameters, ... | Mike Bayer | 2006-04-24 | 1 | -5/+17 |
* | added temporary option "construct_new" to mapper which will cause the mapper ... | Mike Bayer | 2006-04-23 | 1 | -1/+18 |
* | fixed up expunge() and the continuing circular refs in attributes, added a un... | Mike Bayer | 2006-04-19 | 1 | -1/+1 |
* | got circular many-to-many relationships to work | Mike Bayer | 2006-04-19 | 1 | -8/+6 |
* | mapper will verify class inheritance scheme; also will not re-init inherited ... | Mike Bayer | 2006-04-18 | 2 | -1/+4 |
* | fix for [ticket:158] regarding translate row | Mike Bayer | 2006-04-17 | 1 | -2/+2 |
* | a new batching algorithm for the topological sort | Mike Bayer | 2006-04-16 | 1 | -14/+49 |
* | had to take out the "treeification" of the dependency sort as it doenst reall... | Mike Bayer | 2006-04-14 | 2 | -5/+5 |
* | a little spring cleaning for the util package, etc | Mike Bayer | 2006-04-07 | 3 | -0/+21 |
* | split up Session into Session/LegacySession, added some new constructor args | Mike Bayer | 2006-04-06 | 2 | -98/+116 |
* | mapper's querying facilities migrated to new query.Query() object, which can ... | Mike Bayer | 2006-04-06 | 5 | -303/+397 |
* | added explicit "session" argument to get(), select_whereclause in mapper, as ... | Mike Bayer | 2006-04-06 | 2 | -38/+46 |
* | added 'entity_name' keyword argument to mapper. a mapper is now associated w... | Mike Bayer | 2006-04-03 | 3 | -60/+77 |
* | attributes overhaul #2 - attribute manager now tracks class-level initializer... | Mike Bayer | 2006-04-03 | 1 | -2/+2 |
* | made order_by/group_by construction a little more simplisitc | Mike Bayer | 2006-04-03 | 1 | -1/+1 |
* | added unit test for the old commit that was in [changeset:1186]. modified it... | Mike Bayer | 2006-03-31 | 2 | -9/+10 |
* | 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 | 3 | -90/+49 |
* | starting to refactor mapper slightly, adding entity_name, version_id_col, all... | Mike Bayer | 2006-03-31 | 1 | -28/+23 |
* | wow, __len__ is a real disaster when combined with list()...turning that off | Mike Bayer | 2006-03-31 | 1 | -10/+31 |
* | Jonas Borgström's fantastic SelectRsults patch that adds dynamic list argume... | Mike Bayer | 2006-03-31 | 3 | -6/+80 |
* | tweak to mapper to allow inheritance on the same table. | Mike Bayer | 2006-03-27 | 1 | -15/+17 |
* | backrefs on cyclical relationships were breaking for the "root" node which ha... | Mike Bayer | 2006-03-27 | 2 | -0/+7 |
* | 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 | 3 | -5/+25 |
* | 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 circular loop in creating new list elements, fixes a common refresh()... | Mike Bayer | 2006-03-25 | 1 | -0/+4 |
* | removed all "tablename + '_' + columname" code and replaced with column._labe... | Mike Bayer | 2006-03-25 | 2 | -5/+5 |
* | added expire/refresh/expunge to assign_mapper | Mike Bayer | 2006-03-25 | 1 | -0/+9 |
* | got some support for mapping to a select that only selects some of the column... | Mike Bayer | 2006-03-25 | 2 | -8/+26 |
* | added check in SessionTrans.begin() that the underlying unit of work is still... | Mike Bayer | 2006-03-25 | 1 | -0/+2 |
* | added expunge() method to objectstore | Mike Bayer | 2006-03-25 | 2 | -2/+14 |
* | some more tweaks to get more advanced polymorphic stuff to work | Mike Bayer | 2006-03-24 | 2 | -4/+35 |
* | added some extra traversal for one-to-many/many-to-one "private" relations to... | Mike Bayer | 2006-03-22 | 1 | -9/+21 |
* | removed print | Mike Bayer | 2006-03-22 | 1 | -1/+0 |
* | added "nest_on" option for Session, so nested transactions can occur mostly a... | Mike Bayer | 2006-03-22 | 2 | -6/+35 |
* | fixed lazy clause construction to go off...you guessed it...the noninherited ... | Mike Bayer | 2006-03-21 | 1 | -1/+2 |
* | a few changes to attributes.py to allow faster initialization of object attri... | Mike Bayer | 2006-03-21 | 2 | -2/+8 |
* | a refactoring to the EagerLoaders' _instance method to do a bunch of column a... | Mike Bayer | 2006-03-21 | 1 | -6/+18 |
* | a few tweaks and the polymorph example can also use eager loading | Mike Bayer | 2006-03-20 | 1 | -0/+8 |