summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/mapping
Commit message (Expand)AuthorAgeFilesLines
* merged 0.2 branch into trunk; 0.1 now in sqlalchemy/branches/rel_0_1Mike Bayer2006-05-259-4139/+0
* fixed a _get_criterion mismatch, cleaned up types + updated types docMike Bayer2006-05-052-16/+17
* added from_obj option to select()Mike Bayer2006-05-051-3/+6
* save_obj/delete_obj need to specify column types to binds for primary key cri...Mike Bayer2006-05-041-4/+4
* "order_by" parameter propigated to inheriting mappersMike Bayer2006-05-031-0/+2
* commented out default schema name checkMike Bayer2006-04-261-1/+1
* removed a "swap" from the lazy binary clause. added a test for that condition...Mike Bayer2006-04-241-2/+2
* lazyload clause calculation uses anonymous keynames for the bind parameters, ...Mike Bayer2006-04-241-5/+17
* added temporary option "construct_new" to mapper which will cause the mapper ...Mike Bayer2006-04-231-1/+18
* fixed up expunge() and the continuing circular refs in attributes, added a un...Mike Bayer2006-04-191-1/+1
* got circular many-to-many relationships to workMike Bayer2006-04-191-8/+6
* mapper will verify class inheritance scheme; also will not re-init inherited ...Mike Bayer2006-04-182-1/+4
* fix for [ticket:158] regarding translate rowMike Bayer2006-04-171-2/+2
* a new batching algorithm for the topological sortMike Bayer2006-04-161-14/+49
* had to take out the "treeification" of the dependency sort as it doenst reall...Mike Bayer2006-04-142-5/+5
* a little spring cleaning for the util package, etcMike Bayer2006-04-073-0/+21
* split up Session into Session/LegacySession, added some new constructor argsMike Bayer2006-04-062-98/+116
* mapper's querying facilities migrated to new query.Query() object, which can ...Mike Bayer2006-04-065-303/+397
* added explicit "session" argument to get(), select_whereclause in mapper, as ...Mike Bayer2006-04-062-38/+46
* added 'entity_name' keyword argument to mapper. a mapper is now associated w...Mike Bayer2006-04-033-60/+77
* attributes overhaul #2 - attribute manager now tracks class-level initializer...Mike Bayer2006-04-031-2/+2
* made order_by/group_by construction a little more simplisitcMike Bayer2006-04-031-1/+1
* added unit test for the old commit that was in [changeset:1186]. modified it...Mike Bayer2006-03-312-9/+10
* adjustments...Mike Bayer2006-03-311-3/+4
* tweak...Mike Bayer2006-03-311-7/+7
* introducing...the mods package ! the SelectResults thing moves as the first modMike Bayer2006-03-313-90/+49
* starting to refactor mapper slightly, adding entity_name, version_id_col, all...Mike Bayer2006-03-311-28/+23
* wow, __len__ is a real disaster when combined with list()...turning that offMike Bayer2006-03-311-10/+31
* Jonas Borgström's fantastic SelectRsults patch that adds dynamic list argume...Mike Bayer2006-03-313-6/+80
* tweak to mapper to allow inheritance on the same table.Mike Bayer2006-03-271-15/+17
* backrefs on cyclical relationships were breaking for the "root" node which ha...Mike Bayer2006-03-272-0/+7
* added always_refresh flag. when the mapper loads rows, it will pull objects ...Mike Bayer2006-03-261-1/+5
* rework to expire() to make it smarter. when you expire(), history is immedia...Mike Bayer2006-03-263-5/+25
* column label generation checks for a conflict against a column named the same...Mike Bayer2006-03-261-2/+2
* improved translation of rows when proxying rows from one mapper to another.Mike Bayer2006-03-261-8/+16
* util: the __setitem__ method on historyarraylist was meaningless, surprising ...Mike Bayer2006-03-261-4/+0
* removed circular loop in creating new list elements, fixes a common refresh()...Mike Bayer2006-03-251-0/+4
* removed all "tablename + '_' + columname" code and replaced with column._labe...Mike Bayer2006-03-252-5/+5
* added expire/refresh/expunge to assign_mapperMike Bayer2006-03-251-0/+9
* got some support for mapping to a select that only selects some of the column...Mike Bayer2006-03-252-8/+26
* added check in SessionTrans.begin() that the underlying unit of work is still...Mike Bayer2006-03-251-0/+2
* added expunge() method to objectstoreMike Bayer2006-03-252-2/+14
* some more tweaks to get more advanced polymorphic stuff to workMike Bayer2006-03-242-4/+35
* added some extra traversal for one-to-many/many-to-one "private" relations to...Mike Bayer2006-03-221-9/+21
* removed printMike Bayer2006-03-221-1/+0
* added "nest_on" option for Session, so nested transactions can occur mostly a...Mike Bayer2006-03-222-6/+35
* fixed lazy clause construction to go off...you guessed it...the noninherited ...Mike Bayer2006-03-211-1/+2
* a few changes to attributes.py to allow faster initialization of object attri...Mike Bayer2006-03-212-2/+8
* a refactoring to the EagerLoaders' _instance method to do a bunch of column a...Mike Bayer2006-03-211-6/+18
* a few tweaks and the polymorph example can also use eager loadingMike Bayer2006-03-201-0/+8