summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/orm
Commit message (Expand)AuthorAgeFilesLines
* pyflakes mop-upJason Kirtland2007-08-193-4/+4
* 1. Module layout. sql.py and related move into a package called "sql".Mike Bayer2007-08-187-20/+29
* - modified SQL operator functions to be module-level operators, allowingMike Bayer2007-08-181-3/+2
* - Added a "legacy" adapter to types, such that user-defined TypeEngineMike Bayer2007-08-171-0/+3
* - added close() method to Transaction. closes out a transaction using rollbackMike Bayer2007-08-171-1/+1
* transactional session rolls back bound connectionMike Bayer2007-08-171-0/+2
* - threadlocal TLConnection, when closes for real, forces parent TLSessionMike Bayer2007-08-171-1/+0
* - added extra argument con_proxy to ConnectionListener interface checkout/che...Mike Bayer2007-08-171-2/+0
* - session transaction closing tweak for threadlocalJason Kirtland2007-08-171-0/+2
* removed ridiculous LOrderedProp objectMike Bayer2007-08-161-18/+1
* revert the _DefaultExtension thing, it added function callsMike Bayer2007-08-161-24/+22
* - moved test/orm/fixtures.py to testlibMike Bayer2007-08-164-46/+38
* Added session.prune(), releases unused objects in strong-ref identity maps.Jason Kirtland2007-08-162-2/+29
* added 'inherit_foreign_keys' arg to mapper()Mike Bayer2007-08-162-1/+12
* -removed print statementsMike Bayer2007-08-151-1/+0
* mass has_key->__contains__ migration, [ticket:738]Mike Bayer2007-08-158-25/+25
* - moved unicode schema ORM tests to unitofwork.py tests. mostlyMike Bayer2007-08-151-1/+1
* removed init_attr() call, which has shown to not increase performanceMike Bayer2007-08-152-15/+0
* cleanupMike Bayer2007-08-141-8/+4
* - fixed endless loopMike Bayer2007-08-141-1/+4
* - base_mapper() becomes a plain attributeMike Bayer2007-08-146-69/+62
* docstirng...Mike Bayer2007-08-131-2/+2
* - a rudimental SessionExtension class has been added, allowing user-definedMike Bayer2007-08-132-4/+77
* Removed unused imports, other import adjustments per pyflakesJason Kirtland2007-08-135-11/+11
* Centralized some `try: import foo except: import other as foo` imports in utilJason Kirtland2007-08-131-5/+1
* - scoped_session docsMike Bayer2007-08-121-1/+5
* #725 add query arg to id_chooser()Mike Bayer2007-08-101-5/+6
* - merged mapper has_pks fix from r3239 0.3 branchMike Bayer2007-08-101-1/+4
* formatting tweaksMike Bayer2007-08-091-16/+16
* - added 'object_session' as classlevel method to SessionMike Bayer2007-08-092-9/+20
* session docs, CHANGES updatesMike Bayer2007-08-092-6/+147
* new session docMike Bayer2007-08-091-36/+28
* - fix mssql compiling explicitly added alias twiceAnts Aasma2007-08-081-5/+1
* added missing methods/props to ScopedSessionMike Bayer2007-08-081-2/+2
* - moved extension class init around so query() is availableMike Bayer2007-08-071-3/+6
* - migrated 'desc', 'asc', and 'distinct' to be in the Operators frameworkMike Bayer2007-08-073-10/+4
* added 'asc' and 'desc' to PropComparator....this should be placed at a lower ...Mike Bayer2007-08-061-0/+6
* - 'comparator' argument to composite() is a classMike Bayer2007-08-061-1/+1
* clean up some dead code in Query.filter_byAnts Aasma2007-08-061-17/+3
* removing Query from __all__ was a little prematureMike Bayer2007-08-061-1/+1
* docstring stuffMike Bayer2007-08-054-9/+109
* Added test coverage for freeform collection decoratorsJason Kirtland2007-08-051-46/+40
* - fix for [ticket:712], more unit testsMike Bayer2007-08-042-4/+4
* - added hooks for alternate session classes into sessionmakerMike Bayer2007-08-032-3/+9
* - removed enhance_classes from scoped_session, replaced withMike Bayer2007-08-031-16/+38
* small fix for filter() aliasing, upgraded elementtree examples to use 0.4 sty...Mike Bayer2007-08-031-2/+1
* switch "if not len(x)" to "if not x"Jonathan Ellis2007-08-033-5/+5
* switch (simple) occurences of 'if len(x)' to 'if x': find . -name '*.py' |xar...Jonathan Ellis2007-08-037-14/+14
* docsMike Bayer2007-08-022-11/+30
* - fixed autoflush with count(), aggregatesMike Bayer2007-08-021-0/+5