summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/mapping/mapper.py
Commit message (Expand)AuthorAgeFilesLines
* merged 0.2 branch into trunk; 0.1 now in sqlalchemy/branches/rel_0_1Mike Bayer2006-05-251-997/+0
* fixed a _get_criterion mismatch, cleaned up types + updated types docMike Bayer2006-05-051-0/+16
* 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
* added temporary option "construct_new" to mapper which will cause the mapper ...Mike Bayer2006-04-231-1/+18
* mapper will verify class inheritance scheme; also will not re-init inherited ...Mike Bayer2006-04-181-1/+3
* fix for [ticket:158] regarding translate rowMike Bayer2006-04-171-2/+2
* mapper's querying facilities migrated to new query.Query() object, which can ...Mike Bayer2006-04-061-273/+97
* added explicit "session" argument to get(), select_whereclause in mapper, as ...Mike Bayer2006-04-061-26/+33
* added 'entity_name' keyword argument to mapper. a mapper is now associated w...Mike Bayer2006-04-031-42/+61
* made order_by/group_by construction a little more simplisitcMike Bayer2006-04-031-1/+1
* 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-311-16/+48
* starting to refactor mapper slightly, adding entity_name, version_id_col, all...Mike Bayer2006-03-311-28/+23
* Jonas Borgström's fantastic SelectRsults patch that adds dynamic list argume...Mike Bayer2006-03-311-5/+6
* tweak to mapper to allow inheritance on the same table.Mike Bayer2006-03-271-15/+17
* 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-261-4/+4
* 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 all "tablename + '_' + columname" code and replaced with column._labe...Mike Bayer2006-03-251-2/+2
* got some support for mapping to a select that only selects some of the column...Mike Bayer2006-03-251-7/+25
* some more tweaks to get more advanced polymorphic stuff to workMike Bayer2006-03-241-4/+32
* added "nest_on" option for Session, so nested transactions can occur mostly a...Mike Bayer2006-03-221-0/+2
* a few changes to attributes.py to allow faster initialization of object attri...Mike Bayer2006-03-211-0/+4
* identified more issues with inheritance. mapper inheritance is more closed-m...Mike Bayer2006-03-171-4/+18
* Fix docstring and exception message in selectone_byAlexey Shamrin2006-03-131-2/+2
* added selectfirst_by/selectone_by, selectone throws exception if more than o...Mike Bayer2006-03-131-17/+28
* refactor to Compiled.get_params() to return new ClauseParameters object, a mo...Mike Bayer2006-03-131-2/+2
* added 'noninherited table' prop to mapper indicating the "lead" table, in the...Mike Bayer2006-03-091-0/+2
* added identity() method to mapper, to help get the primary key of an instance.Mike Bayer2006-03-081-1/+7
* added check to relation that will see if the same table is included between t...Mike Bayer2006-03-081-2/+6
* serious overhaul to get eager loads to work inline with an inheriting mapper,...Mike Bayer2006-03-081-5/+18
* a mapper with inheritance will place itself as "dependent" on the inherited m...Mike Bayer2006-03-061-3/+7
* added new 'polymorphic' example. still trying to understand it :) .Mike Bayer2006-03-061-1/+0
* delete tables in an inheritance rel. requires them in reverseMike Bayer2006-03-061-1/+3
* got mapper to receive the onupdates after updating an instance (also properly...Mike Bayer2006-03-051-9/+22
* added objectstore.refresh(), including supporting changes in mapper, attribut...Mike Bayer2006-03-021-24/+30
* took out that "TypeError" wrapper since it blows away stack traces and confus...Mike Bayer2006-02-281-5/+1
* got mapper.using() to work, fixed push/pop mapper, custom session assignmentsMike Bayer2006-02-271-4/+27
* implemented SyncRules for mapper with inheritance relationship, fixes [ticket...Mike Bayer2006-02-261-7/+19
* place _instance_key on object only when objectstore finally register_clean's ...Mike Bayer2006-02-261-3/+1
* merged sql_rearrangement branch , refactors sql package to work standalone withMike Bayer2006-02-251-3/+3
* get() method needs to use the full table, not just the 'primary' table, to ge...Mike Bayer2006-02-241-1/+1
* moved iteration of props so that props can set up self-referring backref prop...Mike Bayer2006-02-221-1/+2
* working on postupdate idea, refactoring to dependency processingMike Bayer2006-02-211-0/+16
* some comments, changed SmartProperty to be smarter, UOWMike Bayer2006-02-191-0/+5
* exception package added, support throughoutMike Bayer2006-02-191-11/+12