summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy
Commit message (Expand)AuthorAgeFilesLines
* Modifications to allow the backends to control the behavior of an empty inser...Michael Trier2008-10-205-24/+19
* - Improved weakref identity map memory management to no longerMike Bayer2008-10-193-54/+51
* Cleaned up the create_connect_args so that it makes no expectations about key...Michael Trier2008-10-191-8/+40
* tiny tiny speed improvements....Mike Bayer2008-10-185-36/+42
* - 0.5.0rc3, dohMike Bayer2008-10-189-121/+16
* - "not equals" comparisons of simple many-to-one relationMike Bayer2008-10-186-84/+47
* Moved r5164's @lazy_property to @memoized_property, updated existing @memoize...Jason Kirtland2008-10-174-35/+47
* Cache polymorphic_iterator in UOWTask; substantial savings for polymorphism-h...Jason Kirtland2008-10-172-1/+18
* - String's (and Unicode's, UnicodeText's, etc.) convert_unicoderel_0_5rc2Mike Bayer2008-10-121-3/+31
* reduce cruft related to serializable loadersMike Bayer2008-10-121-31/+7
* a much easier way to ArgSingletonMike Bayer2008-10-122-32/+11
* Removed the visit_function stuff in mssql dialect. Added some tests for the f...Michael Trier2008-10-111-10/+4
* Correction of mssql schema reflection in reflectable. Still a problem since t...Michael Trier2008-10-111-2/+6
* Corrected docstring for Query.one. Fixes #1190.Michael Trier2008-10-081-2/+2
* - Oracle will detect string-based statements which containMike Bayer2008-10-071-0/+5
* Documented synonym_for and comparable_using in the main docstring for declara...Michael Trier2008-10-051-0/+24
* Corrects issue where engine.execute raised exception when given empty list. F...Michael Trier2008-10-041-1/+1
* - using contains_eager() against an alias combined with an overall query alia...Mike Bayer2008-10-041-9/+21
* - added a few more assertions for [ticket:1165]Mike Bayer2008-10-041-0/+2
* Allowed column types to be callables. Fixes #1165.Michael Trier2008-10-042-5/+10
* - Adjustment to Session's post-flush accounting of newlyMike Bayer2008-10-031-11/+12
* - identity_map._mutable_attrs is a plain dict since we manage weakref removal...Mike Bayer2008-10-021-2/+2
* the @property / __slots__ fairy pays a visitMike Bayer2008-10-013-57/+48
* Issue a better error message when someone decides to meddle with the active t...Ants Aasma2008-09-301-2/+3
* Fixed session.transaction.commit() on a autocommit=False session not starting...Ants Aasma2008-09-301-7/+2
* - session.execute() will execute a Sequence object passed toMike Bayer2008-09-287-90/+117
* - Fixed up slices on Query (i.e. query[x:y]) to work properlyMike Bayer2008-09-281-8/+13
* Tidy.Jason Kirtland2008-09-281-3/+2
* Fixed mysql TEMPORARY table reflection.Jason Kirtland2008-09-271-1/+1
* - Fixed shared state bug interfering with ScopedSession.mapper'sJason Kirtland2008-09-271-15/+12
* Added query_cls= override to scoped_session's query_propertyJason Kirtland2008-09-271-3/+16
* - fixed RLock-related bug in mapper which could deadlockMike Bayer2008-09-251-19/+21
* random cleanupMike Bayer2008-09-223-49/+62
* genericized the relationship between bind_processor() and _bind_processor() a...Mike Bayer2008-09-191-9/+22
* - Overhauled SQLite date/time bind/result processingMike Bayer2008-09-191-42/+34
* fix up element sorting in declarativeMike Bayer2008-09-192-4/+3
* Get a bit more speed into the new _sort_states function. It's probably possibleGaƫtan de Menten2008-09-193-30/+31
* - Fixed bug involving read/write relation()s thatMike Bayer2008-09-192-2/+2
* un-stupified insert/update/delete sortingMike Bayer2008-09-194-53/+18
* more failing casesMike Bayer2008-09-181-0/+3
* - "non-batch" mode in mapper(), a feature which allowsMike Bayer2008-09-182-1/+4
* - version bumpMike Bayer2008-09-161-32/+47
* - annual unitofwork cleanupMike Bayer2008-09-154-144/+107
* - 0.5.0rc1rel_0_5rc1Mike Bayer2008-09-111-3/+1
* - Added scalar() and value() methods to Query, each return aMike Bayer2008-09-111-0/+5
* Note to self: save buffers before committing.Jason Kirtland2008-09-111-1/+13
* Added Query.scalar() sugar method, eases migration from old query.sum() metho...Jason Kirtland2008-09-111-0/+11
* - the function func.utc_timestamp() compiles to UTC_TIMESTAMP, withoutMike Bayer2008-09-101-1/+2
* return type of exists() is boolean, duhMike Bayer2008-09-091-1/+1
* - Bind params now subclass ColumnElement which allows them to beMike Bayer2008-09-092-2/+10