summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/sql
Commit message (Expand)AuthorAgeFilesLines
* adding zzzeek's patch from ticket #994, which fixed virtually all remaining b...Catherine Devlin2008-03-201-10/+10
* added escape kw arg to contains(), startswith(), endswith(), [ticket:791]Mike Bayer2008-03-192-18/+18
* - like() and ilike() take an optional keyword argumentMike Bayer2008-03-193-24/+28
* Added support for vendor-extended INSERT syntax like INSERT DELAYED INTOJason Kirtland2008-03-072-2/+25
* - Updated exception messaging for r4220Jason Kirtland2008-03-041-5/+5
* - added "bind" keyword argument to insert(), update(), delete();Mike Bayer2008-03-041-7/+19
* - fixed bug which was preventing UNIONS from being cloneable,Mike Bayer2008-03-042-8/+17
* - postgres TIMESTAMP renders correctly [ticket:981]Mike Bayer2008-02-271-2/+2
* silliness reductionMike Bayer2008-02-241-10/+8
* - the value of a bindparam() can be a callable, in whichMike Bayer2008-02-221-2/+11
* - Converted MAGICCOOKIE=object() to a little symbol implementation to ease ob...Jason Kirtland2008-02-221-5/+4
* - can again create aliases of selects against textualMike Bayer2008-02-191-0/+1
* - Fixed a couple pyflakes, cleaned up imports & whitespaceJason Kirtland2008-02-143-130/+123
* - fixed bug in result proxy where anonymously generatedMike Bayer2008-02-141-1/+1
* - fixed bug introduced in r4070 where union() and other compound selects woul...Mike Bayer2008-02-122-3/+2
* - added generative where(<criterion>) method to delete()Mike Bayer2008-02-081-2/+33
* - Added deferrability support to constraintsJason Kirtland2008-02-081-0/+14
* Fix: deletes with schemas on MSSQL 2000 [ticket:967]Paul Johnston2008-02-081-5/+11
* - Some more reST docstring correctionsJason Kirtland2008-02-061-31/+30
* - Added free-form `DDL` statements, can be executed standalone or tied to the...Jason Kirtland2008-02-051-0/+15
* lock in replacing '%' with '%%'Mike Bayer2008-02-041-1/+2
* - add dummy column to appease older SQLite verisons in unicode.pyMike Bayer2008-02-041-2/+6
* - some consolidation of tests in select.py, movedMike Bayer2008-02-011-0/+3
* - Workaround for datetime quirk, LHS comparisons to SA expressions now work.Jason Kirtland2008-01-311-0/+3
* - Friendlier exception messages for unbound, implicit executionJason Kirtland2008-01-311-1/+7
* - added "autocommit=True" kwarg to select() and text(),Mike Bayer2008-01-311-3/+23
* - the startswith(), endswith(), and contains() operatorsMike Bayer2008-01-311-33/+33
* - query.join() can also accept tuples of attributeMike Bayer2008-01-231-0/+3
* more capability added to reduce_columnsMike Bayer2008-01-231-3/+7
* factor create_row_adapter into sql.util.row_adapterMike Bayer2008-01-201-0/+41
* - Oracle assembles the correct columns in the result setMike Bayer2008-01-191-3/+10
* - some expression fixup:Mike Bayer2008-01-192-22/+46
* maintain the ordering of the given collection of columns when reducing so tha...Mike Bayer2008-01-151-1/+1
* finally, a really straightforward reduce() method which reduces colsMike Bayer2008-01-152-54/+35
* - select_table mapper turns straight join into aliased select + custom PK, to...Mike Bayer2008-01-152-1/+37
* - query.join() can now accept class-mapped attributesMike Bayer2008-01-141-2/+2
* - applying some refined versions of the ideas in the smarter_polymorphicMike Bayer2008-01-141-0/+19
* fixed NOT ILIKEMike Bayer2008-01-111-1/+1
* - added "ilike()" operator to column operations.Mike Bayer2008-01-112-1/+5
* - Warnings are now issued as SAWarning instead of RuntimeWarning; util.warn()...Jason Kirtland2008-01-111-4/+4
* redid the _for_ddl String/Text deprecation warning correctly [ticket:912]Mike Bayer2008-01-091-1/+1
* - fixed bug in union() so that select() statements which don't deriveMike Bayer2008-01-081-1/+2
* - fixed an attribute history bug whereby assigning a new collectionMike Bayer2008-01-071-2/+2
* - changed name of TEXT to Text since its a "generic" type; TEXT name isMike Bayer2008-01-052-17/+2
* Experimental: modestly more informative repr() for some expressions (using .d...Jason Kirtland2008-01-051-0/+8
* Migrated a few in-function 'from x import y' to the 'global x; if x is None' ...Jason Kirtland2008-01-051-160/+168
* add anonymous labels to function callsMike Bayer2008-01-041-1/+1
* - further fix to new TypeDecorator, so that subclasses of TypeDecorators work...Mike Bayer2008-01-021-2/+2
* happy new yearMike Bayer2008-01-012-2/+2
* - reworked all lazy/deferred/expired callables to beMike Bayer2007-12-211-2/+3