| Commit message (Expand) | Author | Age | Files | Lines |
| * | - Fixed a needless select which would occur when merging | Mike Bayer | 2009-12-07 | 1 | -19/+20 |
| * | seriously, this is not 0.6 code ! | Mike Bayer | 2009-12-06 | 3 | -1/+7 |
| * | add a warning for unported dialects. considered a full blown NotImplemented... | Mike Bayer | 2009-12-06 | 6 | -2/+13 |
| * | - The Boolean type, when used on a backend that doesn't | Mike Bayer | 2009-12-06 | 8 | -181/+141 |
| * | - reworked the DDL generation of ENUM and similar to be more platform agnostic. | Mike Bayer | 2009-12-06 | 8 | -72/+116 |
| * | remove unneeded _OracleDateTime/_OracleTimestamp cx_oracle types, streamline ... | Mike Bayer | 2009-12-06 | 1 | -31/+1 |
| * | - merged r6526 from 0.5 branch + some additional formatting fixes, [ticket:1597] | Mike Bayer | 2009-12-06 | 2 | -40/+38 |
| * | - fixed the import for entrypoint-driven dialects to | Mike Bayer | 2009-12-05 | 1 | -7/+24 |
| * | - an explicit check occurs when a synonym() is used with | Mike Bayer | 2009-12-04 | 2 | -3/+21 |
| * | - The cursor associated with connection pool connections | Mike Bayer | 2009-12-03 | 1 | -1/+4 |
| * | primaryjoin/secondaryjoin accept ColumnElement, docs, [ticket:1622] | Mike Bayer | 2009-11-30 | 1 | -8/+8 |
| * | - changed a few isinstance(value, Decimal) to "is not None", where appropriate | Gaëtan de Menten | 2009-11-28 | 4 | -6/+12 |
| * | - relation primaryjoin and secondaryjoin now check that they | Mike Bayer | 2009-11-25 | 1 | -1/+1 |
| * | Prelookup codec in the String result processor for dialects which do not | Gaëtan de Menten | 2009-11-23 | 1 | -2/+4 |
| * | - VARCHAR/NVARCHAR will not render without a length, raises | Mike Bayer | 2009-11-22 | 1 | -5/+14 |
| * | revert part of the change of r6510 because "select datetime('now')" in SQLite | Gaëtan de Menten | 2009-11-17 | 1 | -2/+2 |
| * | - sqlite | Gaëtan de Menten | 2009-11-17 | 1 | -55/+71 |
| * | minor speed optimization in String result_processor (if decoding is required) | Gaëtan de Menten | 2009-11-17 | 1 | -1/+2 |
| * | minor speed optimization for PGArray bind & result processors | Gaëtan de Menten | 2009-11-16 | 1 | -14/+22 |
| * | - Fixed bug whereby composite columns wouldn't load properly | Mike Bayer | 2009-11-15 | 1 | -1/+4 |
| * | merge r6504 from 0.5 plus an enhancement to the unit test, [ticket:1611] | Mike Bayer | 2009-11-15 | 1 | -2/+2 |
| * | - Removed unused `load()` method from ShardedQuery. | Mike Bayer | 2009-11-15 | 1 | -10/+0 |
| * | start relying on new unicode detection fully - remove isinstance() from the u... | Mike Bayer | 2009-11-15 | 2 | -10/+30 |
| * | - pg8000 + postgresql dialects now check for float/numeric return | Mike Bayer | 2009-11-15 | 21 | -88/+139 |
| * | fix StaticPool [ticket:1615] | Mike Bayer | 2009-11-12 | 1 | -3/+5 |
| * | reduce some call overhead | Mike Bayer | 2009-11-10 | 1 | -4/+3 |
| * | scan for autocommit based on text() specific flag, saves isinstance() call on... | Mike Bayer | 2009-11-10 | 2 | -4/+4 |
| * | - new oursql dialect added. [ticket:1613] | Mike Bayer | 2009-11-10 | 2 | -1/+218 |
| * | - subclassed Function off of new FunctionElement generic base | Mike Bayer | 2009-11-10 | 3 | -100/+138 |
| * | - ForeignKey(constraint=some_parent) is now private _constraint | Mike Bayer | 2009-11-09 | 1 | -71/+90 |
| * | - query.get() can be used with a mapping to an outer join | Mike Bayer | 2009-11-09 | 3 | -16/+37 |
| * | - added a real unit test for sqlsoup | Mike Bayer | 2009-11-09 | 2 | -167/+106 |
| * | moved modified_event() calls below the attribute extension fires. this basic... | Mike Bayer | 2009-11-08 | 1 | -17/+13 |
| * | allow setattr() access to _CursorFairy directly, thereby removing the need fo... | Mike Bayer | 2009-11-06 | 2 | -5/+11 |
| * | supports unicode binds in PG too. even without the UNICODE extension it seem... | Mike Bayer | 2009-11-06 | 1 | -1/+2 |
| * | Within NamedTuple, izip is faster on most cases, and equally fast on others | Gaëtan de Menten | 2009-11-05 | 1 | -1/+1 |
| * | use list comprehension instead of generator as it is much faster for small | Gaëtan de Menten | 2009-11-04 | 1 | -2/+2 |
| * | - Fixed bug in two-phase transaction whereby commit() method | Mike Bayer | 2009-11-04 | 1 | -2/+1 |
| * | - Fixed bug where Query would crash if a join() with no clear | Mike Bayer | 2009-11-04 | 1 | -2/+5 |
| * | Using generators for small lists is highly inefficient. This change shoves | Gaëtan de Menten | 2009-11-04 | 1 | -1/+1 |
| * | fix MySQL initialize to use defaultdialect first | Mike Bayer | 2009-11-03 | 2 | -5/+2 |
| * | - The "start" and "increment" attributes on Sequence now | Mike Bayer | 2009-11-03 | 4 | -13/+19 |
| * | - Connection pool logging now uses both INFO and DEBUG | Mike Bayer | 2009-11-03 | 1 | -34/+34 |
| * | - dialect.get_default_schema_name(connection) is now | Mike Bayer | 2009-11-03 | 8 | -38/+52 |
| * | * tweaked PickleType result_processor and bind_processor so that they are more | Gaëtan de Menten | 2009-11-03 | 1 | -16/+38 |
| * | rewrote PickleType bind_processor and result_processors to bypass TypeDecorator | Gaëtan de Menten | 2009-11-03 | 1 | -8/+26 |
| * | - Fixed the call to get_committed_value() on CompositeProperty. | Mike Bayer | 2009-11-03 | 1 | -1/+2 |
| * | revert r6466 | Mike Bayer | 2009-11-03 | 2 | -3/+2 |
| * | - Fixed the call to get_committed_value() on CompositeProperty. | Mike Bayer | 2009-11-03 | 2 | -2/+3 |
| * | fix adapt() so that DB-specified typedecorator replacements work | Mike Bayer | 2009-11-01 | 1 | -1/+4 |