| Commit message (Expand) | Author | Age | Files | Lines |
| * | adding zzzeek's patch from ticket #994, which fixed virtually all remaining b... | Catherine Devlin | 2008-03-20 | 1 | -10/+10 |
| * | added escape kw arg to contains(), startswith(), endswith(), [ticket:791] | Mike Bayer | 2008-03-19 | 2 | -18/+18 |
| * | - like() and ilike() take an optional keyword argument | Mike Bayer | 2008-03-19 | 3 | -24/+28 |
| * | Added support for vendor-extended INSERT syntax like INSERT DELAYED INTO | Jason Kirtland | 2008-03-07 | 2 | -2/+25 |
| * | - Updated exception messaging for r4220 | Jason Kirtland | 2008-03-04 | 1 | -5/+5 |
| * | - added "bind" keyword argument to insert(), update(), delete(); | Mike Bayer | 2008-03-04 | 1 | -7/+19 |
| * | - fixed bug which was preventing UNIONS from being cloneable, | Mike Bayer | 2008-03-04 | 2 | -8/+17 |
| * | - postgres TIMESTAMP renders correctly [ticket:981] | Mike Bayer | 2008-02-27 | 1 | -2/+2 |
| * | silliness reduction | Mike Bayer | 2008-02-24 | 1 | -10/+8 |
| * | - the value of a bindparam() can be a callable, in which | Mike Bayer | 2008-02-22 | 1 | -2/+11 |
| * | - Converted MAGICCOOKIE=object() to a little symbol implementation to ease ob... | Jason Kirtland | 2008-02-22 | 1 | -5/+4 |
| * | - can again create aliases of selects against textual | Mike Bayer | 2008-02-19 | 1 | -0/+1 |
| * | - Fixed a couple pyflakes, cleaned up imports & whitespace | Jason Kirtland | 2008-02-14 | 3 | -130/+123 |
| * | - fixed bug in result proxy where anonymously generated | Mike Bayer | 2008-02-14 | 1 | -1/+1 |
| * | - fixed bug introduced in r4070 where union() and other compound selects woul... | Mike Bayer | 2008-02-12 | 2 | -3/+2 |
| * | - added generative where(<criterion>) method to delete() | Mike Bayer | 2008-02-08 | 1 | -2/+33 |
| * | - Added deferrability support to constraints | Jason Kirtland | 2008-02-08 | 1 | -0/+14 |
| * | Fix: deletes with schemas on MSSQL 2000 [ticket:967] | Paul Johnston | 2008-02-08 | 1 | -5/+11 |
| * | - Some more reST docstring corrections | Jason Kirtland | 2008-02-06 | 1 | -31/+30 |
| * | - Added free-form `DDL` statements, can be executed standalone or tied to the... | Jason Kirtland | 2008-02-05 | 1 | -0/+15 |
| * | lock in replacing '%' with '%%' | Mike Bayer | 2008-02-04 | 1 | -1/+2 |
| * | - add dummy column to appease older SQLite verisons in unicode.py | Mike Bayer | 2008-02-04 | 1 | -2/+6 |
| * | - some consolidation of tests in select.py, moved | Mike Bayer | 2008-02-01 | 1 | -0/+3 |
| * | - Workaround for datetime quirk, LHS comparisons to SA expressions now work. | Jason Kirtland | 2008-01-31 | 1 | -0/+3 |
| * | - Friendlier exception messages for unbound, implicit execution | Jason Kirtland | 2008-01-31 | 1 | -1/+7 |
| * | - added "autocommit=True" kwarg to select() and text(), | Mike Bayer | 2008-01-31 | 1 | -3/+23 |
| * | - the startswith(), endswith(), and contains() operators | Mike Bayer | 2008-01-31 | 1 | -33/+33 |
| * | - query.join() can also accept tuples of attribute | Mike Bayer | 2008-01-23 | 1 | -0/+3 |
| * | more capability added to reduce_columns | Mike Bayer | 2008-01-23 | 1 | -3/+7 |
| * | factor create_row_adapter into sql.util.row_adapter | Mike Bayer | 2008-01-20 | 1 | -0/+41 |
| * | - Oracle assembles the correct columns in the result set | Mike Bayer | 2008-01-19 | 1 | -3/+10 |
| * | - some expression fixup: | Mike Bayer | 2008-01-19 | 2 | -22/+46 |
| * | maintain the ordering of the given collection of columns when reducing so tha... | Mike Bayer | 2008-01-15 | 1 | -1/+1 |
| * | finally, a really straightforward reduce() method which reduces cols | Mike Bayer | 2008-01-15 | 2 | -54/+35 |
| * | - select_table mapper turns straight join into aliased select + custom PK, to... | Mike Bayer | 2008-01-15 | 2 | -1/+37 |
| * | - query.join() can now accept class-mapped attributes | Mike Bayer | 2008-01-14 | 1 | -2/+2 |
| * | - applying some refined versions of the ideas in the smarter_polymorphic | Mike Bayer | 2008-01-14 | 1 | -0/+19 |
| * | fixed NOT ILIKE | Mike Bayer | 2008-01-11 | 1 | -1/+1 |
| * | - added "ilike()" operator to column operations. | Mike Bayer | 2008-01-11 | 2 | -1/+5 |
| * | - Warnings are now issued as SAWarning instead of RuntimeWarning; util.warn()... | Jason Kirtland | 2008-01-11 | 1 | -4/+4 |
| * | redid the _for_ddl String/Text deprecation warning correctly [ticket:912] | Mike Bayer | 2008-01-09 | 1 | -1/+1 |
| * | - fixed bug in union() so that select() statements which don't derive | Mike Bayer | 2008-01-08 | 1 | -1/+2 |
| * | - fixed an attribute history bug whereby assigning a new collection | Mike Bayer | 2008-01-07 | 1 | -2/+2 |
| * | - changed name of TEXT to Text since its a "generic" type; TEXT name is | Mike Bayer | 2008-01-05 | 2 | -17/+2 |
| * | Experimental: modestly more informative repr() for some expressions (using .d... | Jason Kirtland | 2008-01-05 | 1 | -0/+8 |
| * | Migrated a few in-function 'from x import y' to the 'global x; if x is None' ... | Jason Kirtland | 2008-01-05 | 1 | -160/+168 |
| * | add anonymous labels to function calls | Mike Bayer | 2008-01-04 | 1 | -1/+1 |
| * | - further fix to new TypeDecorator, so that subclasses of TypeDecorators work... | Mike Bayer | 2008-01-02 | 1 | -2/+2 |
| * | happy new year | Mike Bayer | 2008-01-01 | 2 | -2/+2 |
| * | - reworked all lazy/deferred/expired callables to be | Mike Bayer | 2007-12-21 | 1 | -2/+3 |