| Commit message (Expand) | Author | Age | Files | Lines |
| * | added a hook in for 'binary operator', so sqlite can exchange | Mike Bayer | 2005-12-31 | 2 | -2/+9 |
| * | shuffling to allow standard 'types' module in | Mike Bayer | 2005-12-31 | 1 | -6/+12 |
| * | fix to ansisql when it tries to determine param-based select clause that its | Mike Bayer | 2005-12-31 | 4 | -20/+30 |
| * | license switch | Mike Bayer | 2005-12-31 | 17 | -221/+34 |
| * | datetime introspection adjustment | Mike Bayer | 2005-12-31 | 1 | -16/+6 |
| * | some doc changes | Mike Bayer | 2005-12-31 | 1 | -30/+29 |
| * | changes related to mapping against arbitrary selects, selects with labels or ... | Mike Bayer | 2005-12-30 | 4 | -33/+71 |
| * | reworking concept of column lists, "FromObject", "Selectable"; | Mike Bayer | 2005-12-30 | 4 | -89/+141 |
| * | catching up oracle to current, some tweaks to unittests to work better with o... | Mike Bayer | 2005-12-30 | 1 | -7/+12 |
| * | moved _match_primaries from properties to sql.join, so its generalized to all... | Mike Bayer | 2005-12-29 | 2 | -23/+26 |
| * | removed assignmapper | Mike Bayer | 2005-12-29 | 1 | -25/+1 |
| * | select_by/get_by get SQL clauses as well | Mike Bayer | 2005-12-29 | 1 | -5/+13 |
| * | comments re: partial ordering, association dependencies | Mike Bayer | 2005-12-24 | 2 | -8/+54 |
| * | association object dependency glitches | Mike Bayer | 2005-12-24 | 2 | -6/+26 |
| * | arg fix in create_engine | Mike Bayer | 2005-12-24 | 1 | -2/+1 |
| * | the 'column' function is optional to point a property to a column when constr... | Mike Bayer | 2005-12-24 | 1 | -4/+5 |
| * | docstrings | Mike Bayer | 2005-12-24 | 3 | -39/+288 |
| * | mapper, when updating, only SET's those columns that have changed. | Mike Bayer | 2005-12-23 | 2 | -10/+30 |
| * | added defer and undefer mapper options | Mike Bayer | 2005-12-23 | 2 | -2/+27 |
| * | remove debugging/comments | Mike Bayer | 2005-12-23 | 1 | -3/+0 |
| * | refactor/cleanup to mapper options methodology to allow for incoming defer/un... | Mike Bayer | 2005-12-23 | 4 | -33/+94 |
| * | move execute parameter processing from sql.ClauseElement to engine.execute_co... | Mike Bayer | 2005-12-23 | 3 | -107/+108 |
| * | deferred property, checks for NULL primary key components and returns None | Mike Bayer | 2005-12-22 | 1 | -1/+4 |
| * | added 'deferred' keyword, allowing deferred loading of a particular column | Mike Bayer | 2005-12-21 | 4 | -9/+73 |
| * | added "late WHERE" compilation to SELECT, adds where criterion based on extra... | Mike Bayer | 2005-12-21 | 2 | -2/+28 |
| * | fix to parameter thing in insert | Mike Bayer | 2005-12-20 | 3 | -3/+3 |
| * | added assign_mapper | Mike Bayer | 2005-12-20 | 1 | -1/+17 |
| * | more complete commit when object list is specified | Mike Bayer | 2005-12-20 | 1 | -19/+23 |
| * | in_ clause uses bind params, for typing etc. | Mike Bayer | 2005-12-20 | 1 | -5/+11 |
| * | typemap needs lower case keys since result set metadata is not always case-se... | Mike Bayer | 2005-12-19 | 1 | -2/+7 |
| * | need to do before_insert before populating the insert row | Mike Bayer | 2005-12-17 | 1 | -1/+3 |
| * | fix to oracle function select, users table in test should be non-sequence | Mike Bayer | 2005-12-17 | 1 | -2/+5 |
| * | refactoring of execution path, defaults, and treatment of different paramstyles | Mike Bayer | 2005-12-17 | 8 | -106/+200 |
| * | indent.. | Mike Bayer | 2005-12-16 | 1 | -1/+1 |
| * | docstrings, who knew | Mike Bayer | 2005-12-16 | 2 | -20/+104 |
| * | factored "sequence" execution in postgres in oracle to be generalized to the ... | Mike Bayer | 2005-12-16 | 9 | -119/+181 |
| * | small tweak to HistoryList to properly report "delete" success, new unit test... | Mike Bayer | 2005-12-15 | 1 | -1/+3 |
| * | rethinking sequences model to allow any default values | Mike Bayer | 2005-12-15 | 3 | -4/+50 |
| * | added select_by, get_by, magic methods | Mike Bayer | 2005-12-14 | 2 | -0/+109 |
| * | echo can now be False, True or 'debug'. result sets are printed only if echo ... | Mike Bayer | 2005-12-12 | 1 | -2/+2 |
| * | added 'order_by' property to mapper constructor | Mike Bayer | 2005-12-12 | 2 | -5/+18 |
| * | build in 'backref' property argument | Mike Bayer | 2005-12-09 | 3 | -19/+84 |
| * | fixes to the previous checkin with distinct etc | Mike Bayer | 2005-12-08 | 3 | -49/+23 |
| * | some enhancemnets to unions, unions and selects need to be more commonly deri... | Mike Bayer | 2005-12-08 | 3 | -13/+44 |
| * | slight change to order by for limited eager select | Mike Bayer | 2005-12-07 | 1 | -0/+1 |
| * | limit and offset support for mappers, insanity with eager loading | Mike Bayer | 2005-12-07 | 2 | -21/+34 |
| * | added rudimentary support for limit and offset (with the hack version in oracle) | Mike Bayer | 2005-12-07 | 8 | -11/+95 |
| * | working the backref attributes thing. many-to-many unittest works now... | Mike Bayer | 2005-12-06 | 5 | -44/+68 |
| * | first take at backreference handlers | Mike Bayer | 2005-12-06 | 2 | -8/+50 |
| * | fallback on importing pysqlite2 | Mike Bayer | 2005-12-06 | 1 | -1/+4 |