summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy
Commit message (Expand)AuthorAgeFilesLines
...
* a missing cursor.close() here caused a *huge* amount of weird locking issues...Mike Bayer2013-08-021-7/+10
* Added a new attribute :attr:`.Session.info` to :class:`.Session`;Mike Bayer2013-08-021-2/+42
* - assorted fixes raised by pypy 2.1beta2, but all of which are goodMike Bayer2013-08-013-3/+29
* Updates to MySQL reserved words for versions 5.5, 5.6, courtesyMike Bayer2013-07-311-0/+10
* fix missing commaMike Bayer2013-07-311-1/+1
* - update ORM event docs to include that you can listen on an unmapped base,Mike Bayer2013-07-311-29/+32
* - Fixed bug in common table expression system where if the CTE wereMike Bayer2013-07-312-12/+18
* - this collection can be None on cleanup, so check for thatMike Bayer2013-07-271-1/+1
* - fix issue in join rewriting whereby we need to ensure the .key and .nameMike Bayer2013-07-271-1/+3
* - The C extensions are ported to Python 3 and will build underMike Bayer2013-07-263-45/+352
* - add event.contains() function to the event package, returns TrueMike Bayer2013-07-264-18/+24
* - Removal of event listeners is now implemented. The feature isMike Bayer2013-07-2610-790/+1097
* - The mechanism by which attribute events pass along anMike Bayer2013-07-263-52/+123
* tpoMike Bayer2013-07-201-9/+9
* - Improved the examples in ``examples/generic_associations``, includingMike Bayer2013-07-192-1/+41
* Minor hybrid extension documentation updatepr/18David Beitey2013-07-191-2/+2
* Fixed bug in ORM-level event registration where the "raw" orMike Bayer2013-07-181-5/+8
* Fixed bug in :class:`.CheckConstraint` DDL where the "quote" flag from aMike Bayer2013-07-171-1/+3
* wording about supported dialects for Query.yield_perpr/17Domen Kožar2013-07-141-6/+6
* A performance fix related to the usage of the :func:`.defer` optionMike Bayer2013-07-134-32/+38
* doc fixMike Bayer2013-07-121-1/+1
* The newly added SQLite DATETIME arguments storage_format andMike Bayer2013-07-121-0/+6
* - use inline=True for the insert..select here so it works on oracleMike Bayer2013-07-122-2/+13
* Fixed bug where the expression system relied upon the ``str()``Mike Bayer2013-07-124-5/+35
* don't split the regexps for chop_traceback()Mike Bayer2013-07-121-4/+2
* Dialect.initialize() is not called a second time if an :class:`.Engine`Mike Bayer2013-07-113-1/+16
* - we dont actually need this unicode cast, on py3k + linux it seems theMike Bayer2013-07-092-8/+2
* - create a new system where we can decorate an event methodMike Bayer2013-07-088-44/+309
* remove undoc-members from query docstring [ticket:2774]Mike Bayer2013-07-071-0/+7
* - Added new method to the :func:`.insert` constructMike Bayer2013-07-055-3/+92
* Fixed bug whereby attribute history functions would failMike Bayer2013-07-041-2/+2
* Fixed bug where :class:`.QueuePool` would lose the correctMike Bayer2013-07-041-1/+6
* add a float exclusion to help oursql build 100%Mike Bayer2013-07-022-0/+10
* Fixed bug when using multi-table UPDATE where a supplementalMike Bayer2013-07-021-2/+2
* Added :class:`.BIGINT` to the list of type names that can beMike Bayer2013-07-021-2/+4
* ORM descriptors such as hybrid properties can now be referencedMike Bayer2013-07-021-10/+12
* - refactor pool a bit so that intent between ConnectionRecord/ConnectionFairy...Mike Bayer2013-07-025-110/+245
* Added new flag ``retaining=False`` to the kinterbasdb and fdb dialects.Mike Bayer2013-06-303-46/+83
* - replace most explicitly-named test objects called "Mock..." withMike Bayer2013-06-304-1/+19
* - additional fix for [ticket:2750] where on an update, we make sure theMike Bayer2013-06-301-1/+2
* A warning is emitted when trying to flush an object of an inheritedMike Bayer2013-06-302-1/+35
* The behavior of :func:`.extract` has been simplified on theMike Bayer2013-06-281-22/+0
* improve the close handling here so that we don't double-close a connection;Mike Bayer2013-06-281-3/+5
* Type lookup when reflecting the Firebird types LONG andMike Bayer2013-06-281-7/+6
* Fixed bug in HSTORE type where keys/values that containedMike Bayer2013-06-281-3/+3
* - fix a regression caused by #2587, where query.join() would apply anMike Bayer2013-06-271-1/+1
* Merge branch 'ticket_2746'Mike Bayer2013-06-263-66/+186
|\
| * - rework of correlation, continuing on #2668, #2746Mike Bayer2013-06-263-66/+186
* | Fix indexes reflection in PostgreSQLpr/13Roman Podolyaka2013-06-262-15/+24
|/
* docsMike Bayer2013-06-232-9/+20