| Commit message (Expand) | Author | Age | Files | Lines |
| * | - Made sqlalchemy.sql.expressions.Executable part of public | Mike Bayer | 2010-02-12 | 1 | -1/+15 |
| * | - The type/expression system now does a more complete job | Mike Bayer | 2010-02-11 | 2 | -5/+60 |
| * | - Restored the keys() method to ResultProxy. | Mike Bayer | 2010-02-10 | 1 | -1/+3 |
| * | - FunctionElement subclasses are now directly executable the | Mike Bayer | 2010-02-07 | 1 | -2/+13 |
| * | - Added math negation operator support, -x. | Mike Bayer | 2010-02-05 | 1 | -1/+14 |
| * | - allow exists(s.as_scalar()) to work | Mike Bayer | 2010-01-28 | 1 | -0/+10 |
| * | add an informative error msg for non-collection passed to select() | Mike Bayer | 2010-01-28 | 1 | -1/+5 |
| * | oracle compat | Philip Jenvey | 2010-01-26 | 1 | -0/+1 |
| * | - Added a tuple_() construct, allows sets of expressions | Mike Bayer | 2010-01-25 | 1 | -67/+82 |
| * | - union(), intersect(), except() and other "compound" types | Mike Bayer | 2010-01-25 | 2 | -47/+199 |
| * | not ready to put execution_options in the text()/select() constructors yet | Mike Bayer | 2010-01-24 | 1 | -3/+5 |
| * | - types.Binary is renamed to types.LargeBinary, it only | Mike Bayer | 2010-01-23 | 1 | -6/+6 |
| * | fixed the illegal_initial_chars collection + unit test, [ticket:1659] | Mike Bayer | 2010-01-21 | 1 | -2/+9 |
| * | moved the metadata step of ResultProxy into a ResultMetaData object. this al... | Mike Bayer | 2010-01-20 | 1 | -1/+0 |
| * | - added native INTERVAL type to the dialect. This supports | Mike Bayer | 2010-01-18 | 1 | -8/+21 |
| * | - remove the exclusion of cx_oracle.STRING from setinputsizes by | Mike Bayer | 2010-01-17 | 1 | -2/+4 |
| * | statement_options -> execution_options | Mike Bayer | 2010-01-17 | 1 | -18/+18 |
| * | - added "statement_options()" to Query, to so options can be | Mike Bayer | 2010-01-16 | 1 | -0/+21 |
| * | - Fixed a column arithmetic bug that affected column | Mike Bayer | 2010-01-03 | 1 | -0/+13 |
| * | - calling expr.in_([]), i.e. with an empty list, emits a warning | Mike Bayer | 2009-12-29 | 2 | -0/+4 |
| * | - Fixed bug preventing alias() of an alias() from being | Mike Bayer | 2009-12-18 | 1 | -0/+5 |
| * | - multi-part schema names, i.e. with dots such as | Mike Bayer | 2009-12-08 | 1 | -17/+55 |
| * | - The "use get" behavior of many-to-one relations, i.e. that a | Mike Bayer | 2009-12-08 | 1 | -1/+16 |
| * | remove unfinished dialects | Mike Bayer | 2009-12-07 | 1 | -3/+0 |
| * | - The Boolean type, when used on a backend that doesn't | Mike Bayer | 2009-12-06 | 1 | -4/+38 |
| * | - reworked the DDL generation of ENUM and similar to be more platform agnostic. | Mike Bayer | 2009-12-06 | 1 | -1/+1 |
| * | - VARCHAR/NVARCHAR will not render without a length, raises | Mike Bayer | 2009-11-22 | 1 | -3/+3 |
| * | start relying on new unicode detection fully - remove isinstance() from the u... | Mike Bayer | 2009-11-15 | 1 | -2/+4 |
| * | - pg8000 + postgresql dialects now check for float/numeric return | Mike Bayer | 2009-11-15 | 1 | -6/+6 |
| * | - new oursql dialect added. [ticket:1613] | Mike Bayer | 2009-11-10 | 2 | -4/+5 |
| * | test fix, [ticket:1595] | Mike Bayer | 2009-11-10 | 1 | -6/+7 |
| * | - simplify default schema name test | Mike Bayer | 2009-11-03 | 1 | -1/+1 |
| * | - The "start" and "increment" attributes on Sequence now | Mike Bayer | 2009-11-03 | 1 | -4/+64 |
| * | no native unicode for mysql + zxjdbc | Mike Bayer | 2009-10-26 | 1 | -1/+1 |
| * | whats up with the native_unicode test on jython | Mike Bayer | 2009-10-26 | 1 | -3/+7 |
| * | test fixes | Mike Bayer | 2009-10-26 | 1 | -2/+2 |
| * | - The psycopg2 dialect now uses psycopg2's "unicode extension" | Mike Bayer | 2009-10-26 | 1 | -5/+15 |
| * | - generalized Enum to issue a CHECK constraint + VARCHAR on default platform | Mike Bayer | 2009-10-25 | 1 | -0/+81 |
| * | - ResultProxy internals have been overhauled to greatly reduce | Mike Bayer | 2009-10-24 | 1 | -1/+18 |
| * | - insert() and update() constructs can now embed bindparam() | Mike Bayer | 2009-10-23 | 1 | -0/+28 |
| * | - RETURNING is supported by 8.2+ | Mike Bayer | 2009-10-21 | 1 | -8/+8 |
| * | merge r6418 from 0.5, dedupe expressions on clause ident, not string value | Mike Bayer | 2009-10-20 | 1 | -0/+43 |
| * | merged r6416 of 0.5 branch, fix the "numeric" paramstyle and add tests | Mike Bayer | 2009-10-20 | 1 | -0/+30 |
| * | deprecations per [ticket:1498]: | Mike Bayer | 2009-10-15 | 2 | -14/+5 |
| * | - an executemany() now requires that all bound parameter | Mike Bayer | 2009-10-15 | 2 | -5/+25 |
| * | - DefaultRunner and subclasses have been removed. The job | Mike Bayer | 2009-10-15 | 1 | -1/+1 |
| * | - RowProxy objects are now pickleable, i.e. the object returned | Mike Bayer | 2009-10-11 | 1 | -3/+44 |
| * | - unit test fixes | Mike Bayer | 2009-10-10 | 1 | -1/+1 |
| * | merge from branches/clauseelement-nonzero | Philip Jenvey | 2009-09-24 | 4 | -13/+19 |
| * | mssql+zxjdbc support | Philip Jenvey | 2009-09-11 | 1 | -4/+7 |