summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy
Commit message (Expand)AuthorAgeFilesLines
* - Fixed a needless select which would occur when mergingMike Bayer2009-12-071-19/+20
* seriously, this is not 0.6 code !Mike Bayer2009-12-063-1/+7
* add a warning for unported dialects. considered a full blown NotImplemented...Mike Bayer2009-12-066-2/+13
* - The Boolean type, when used on a backend that doesn'tMike Bayer2009-12-068-181/+141
* - reworked the DDL generation of ENUM and similar to be more platform agnostic.Mike Bayer2009-12-068-72/+116
* remove unneeded _OracleDateTime/_OracleTimestamp cx_oracle types, streamline ...Mike Bayer2009-12-061-31/+1
* - merged r6526 from 0.5 branch + some additional formatting fixes, [ticket:1597]Mike Bayer2009-12-062-40/+38
* - fixed the import for entrypoint-driven dialects toMike Bayer2009-12-051-7/+24
* - an explicit check occurs when a synonym() is used withMike Bayer2009-12-042-3/+21
* - The cursor associated with connection pool connectionsMike Bayer2009-12-031-1/+4
* primaryjoin/secondaryjoin accept ColumnElement, docs, [ticket:1622]Mike Bayer2009-11-301-8/+8
* - changed a few isinstance(value, Decimal) to "is not None", where appropriateGaëtan de Menten2009-11-284-6/+12
* - relation primaryjoin and secondaryjoin now check that theyMike Bayer2009-11-251-1/+1
* Prelookup codec in the String result processor for dialects which do notGaëtan de Menten2009-11-231-2/+4
* - VARCHAR/NVARCHAR will not render without a length, raisesMike Bayer2009-11-221-5/+14
* revert part of the change of r6510 because "select datetime('now')" in SQLiteGaëtan de Menten2009-11-171-2/+2
* - sqliteGaëtan de Menten2009-11-171-55/+71
* minor speed optimization in String result_processor (if decoding is required)Gaëtan de Menten2009-11-171-1/+2
* minor speed optimization for PGArray bind & result processorsGaëtan de Menten2009-11-161-14/+22
* - Fixed bug whereby composite columns wouldn't load properlyMike Bayer2009-11-151-1/+4
* merge r6504 from 0.5 plus an enhancement to the unit test, [ticket:1611]Mike Bayer2009-11-151-2/+2
* - Removed unused `load()` method from ShardedQuery.Mike Bayer2009-11-151-10/+0
* start relying on new unicode detection fully - remove isinstance() from the u...Mike Bayer2009-11-152-10/+30
* - pg8000 + postgresql dialects now check for float/numeric returnMike Bayer2009-11-1521-88/+139
* fix StaticPool [ticket:1615]Mike Bayer2009-11-121-3/+5
* reduce some call overheadMike Bayer2009-11-101-4/+3
* scan for autocommit based on text() specific flag, saves isinstance() call on...Mike Bayer2009-11-102-4/+4
* - new oursql dialect added. [ticket:1613]Mike Bayer2009-11-102-1/+218
* - subclassed Function off of new FunctionElement generic baseMike Bayer2009-11-103-100/+138
* - ForeignKey(constraint=some_parent) is now private _constraintMike Bayer2009-11-091-71/+90
* - query.get() can be used with a mapping to an outer joinMike Bayer2009-11-093-16/+37
* - added a real unit test for sqlsoupMike Bayer2009-11-092-167/+106
* moved modified_event() calls below the attribute extension fires. this basic...Mike Bayer2009-11-081-17/+13
* allow setattr() access to _CursorFairy directly, thereby removing the need fo...Mike Bayer2009-11-062-5/+11
* supports unicode binds in PG too. even without the UNICODE extension it seem...Mike Bayer2009-11-061-1/+2
* Within NamedTuple, izip is faster on most cases, and equally fast on othersGaëtan de Menten2009-11-051-1/+1
* use list comprehension instead of generator as it is much faster for smallGaëtan de Menten2009-11-041-2/+2
* - Fixed bug in two-phase transaction whereby commit() methodMike Bayer2009-11-041-2/+1
* - Fixed bug where Query would crash if a join() with no clearMike Bayer2009-11-041-2/+5
* Using generators for small lists is highly inefficient. This change shovesGaëtan de Menten2009-11-041-1/+1
* fix MySQL initialize to use defaultdialect firstMike Bayer2009-11-032-5/+2
* - The "start" and "increment" attributes on Sequence nowMike Bayer2009-11-034-13/+19
* - Connection pool logging now uses both INFO and DEBUGMike Bayer2009-11-031-34/+34
* - dialect.get_default_schema_name(connection) is nowMike Bayer2009-11-038-38/+52
* * tweaked PickleType result_processor and bind_processor so that they are moreGaëtan de Menten2009-11-031-16/+38
* rewrote PickleType bind_processor and result_processors to bypass TypeDecoratorGaëtan de Menten2009-11-031-8/+26
* - Fixed the call to get_committed_value() on CompositeProperty.Mike Bayer2009-11-031-1/+2
* revert r6466Mike Bayer2009-11-032-3/+2
* - Fixed the call to get_committed_value() on CompositeProperty.Mike Bayer2009-11-032-2/+3
* fix adapt() so that DB-specified typedecorator replacements workMike Bayer2009-11-011-1/+4