summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy
Commit message (Expand)AuthorAgeFilesLines
* - 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
* - INTERVAL supports an optional "precision" argumentMike Bayer2009-11-012-4/+16
* - filter out SYS_NC\d+$ columns [ticket:1513]Mike Bayer2009-11-011-5/+13
* add "dialect" to the __all__ of each root dialect packageMike Bayer2009-11-016-18/+20
* - the `__contains__()` method of `MetaData` now acceptsMike Bayer2009-11-011-2/+4
* get more speed out of the Time type on MysqlGaëtan de Menten2009-10-301-2/+5
* get a bit more speed out of datetime and LOB-based types on cx_oracleGaëtan de Menten2009-10-301-12/+13
* added comment so that other people don't spend their time trying to optimizeGaëtan de Menten2009-10-301-0/+2
* minor speed improvement on date, datetime and time types on SQLiteGaëtan de Menten2009-10-301-1/+2
* large speed improvement of the Interval type on non-native dialectsGaëtan de Menten2009-10-291-2/+3