| Commit message (Expand) | Author | Age | Files | Lines |
| * | - merge r6586 from 0.5 branch, for [ticket:1647] | Mike Bayer | 2009-12-29 | 1 | -1/+85 |
| * | - Column() supports a keyword argument "sqlite_autoincrement", which | Mike Bayer | 2009-12-18 | 1 | -1/+3 |
| * | - Fixed bug preventing alias() of an alias() from being | Mike Bayer | 2009-12-18 | 1 | -1/+1 |
| * | documentation patch for [ticket:1354] | Mike Bayer | 2009-12-09 | 1 | -2/+8 |
| * | - Session.execute() now locates table- and | Mike Bayer | 2009-12-08 | 1 | -2/+8 |
| * | - removed needless "counter" behavior with select() | Mike Bayer | 2009-12-08 | 1 | -8/+0 |
| * | - multi-part schema names, i.e. with dots such as | Mike Bayer | 2009-12-08 | 1 | -1/+1 |
| * | - The "use get" behavior of many-to-one relations, i.e. that a | Mike Bayer | 2009-12-08 | 1 | -8/+3 |
| * | - reworked the DDL generation of ENUM and similar to be more platform agnostic. | Mike Bayer | 2009-12-06 | 2 | -21/+31 |
| * | scan for autocommit based on text() specific flag, saves isinstance() call on... | Mike Bayer | 2009-11-10 | 1 | -2/+2 |
| * | - subclassed Function off of new FunctionElement generic base | Mike Bayer | 2009-11-10 | 1 | -51/+57 |
| * | - query.get() can be used with a mapping to an outer join | Mike Bayer | 2009-11-09 | 1 | -0/+18 |
| * | - The "start" and "increment" attributes on Sequence now | Mike Bayer | 2009-11-03 | 1 | -0/+11 |
| * | added docs to case() illusrtating usage of `literal_column()`, can't implemen... | Mike Bayer | 2009-10-28 | 1 | -1/+11 |
| * | - generalized Enum to issue a CHECK constraint + VARCHAR on default platform | Mike Bayer | 2009-10-25 | 2 | -9/+26 |
| * | - Added new ENUM type to the Postgresql dialect, which exists as a schema-level | Mike Bayer | 2009-10-25 | 2 | -33/+28 |
| * | - insert() and update() constructs can now embed bindparam() | Mike Bayer | 2009-10-23 | 1 | -4/+9 |
| * | some cleanup | Mike Bayer | 2009-10-21 | 1 | -11/+22 |
| * | merge r6418 from 0.5, dedupe expressions on clause ident, not string value | Mike Bayer | 2009-10-20 | 1 | -3/+3 |
| * | merged r6416 of 0.5 branch, fix the "numeric" paramstyle and add tests | Mike Bayer | 2009-10-20 | 1 | -1/+1 |
| * | deprecations per [ticket:1498]: | Mike Bayer | 2009-10-15 | 2 | -26/+8 |
| * | - an executemany() now requires that all bound parameter | Mike Bayer | 2009-10-15 | 2 | -14/+28 |
| * | remove instanceof() in favor of memoized flags, part of [ticket:1566] | Mike Bayer | 2009-10-14 | 1 | -9/+7 |
| * | - added "ddl" argument to the "on" callable of DDLElement [ticket:1538] | Mike Bayer | 2009-10-12 | 1 | -3/+3 |
| * | merge from branches/clauseelement-nonzero | Philip Jenvey | 2009-09-24 | 4 | -51/+62 |
| * | - Inserting NULL into a primary key + foreign key column | Mike Bayer | 2009-08-31 | 1 | -2/+1 |
| * | - Fixed an obscure issue whereby a joined-table subclass | Mike Bayer | 2009-08-28 | 1 | -1/+12 |
| * | doc fixes | Mike Bayer | 2009-08-25 | 1 | -18/+18 |
| * | always visit returning clauses in the right order for positional paramstyle | Philip Jenvey | 2009-08-18 | 1 | -8/+4 |
| * | - simplify MySQLIdentifierPreparer into standard pattern, | Mike Bayer | 2009-08-10 | 1 | -3/+5 |
| * | - the Oracle dialect now features NUMBER which intends | Mike Bayer | 2009-08-09 | 1 | -0/+2 |
| * | - added **kw to ClauseElement.compare(), so that we can smarten up the "use_g... | Mike Bayer | 2009-08-08 | 1 | -12/+44 |
| * | clean up the way we detect MSSQL's form of RETURNING | Mike Bayer | 2009-08-08 | 1 | -10/+22 |
| * | unwrapped _get_colparams a bit, dropped out an isinstance() call | Mike Bayer | 2009-08-08 | 2 | -22/+25 |
| * | - turned on auto-returning for oracle, some errors | Mike Bayer | 2009-08-08 | 1 | -11/+11 |
| * | fix non2.4 gremlin | Mike Bayer | 2009-08-06 | 1 | -1/+1 |
| * | merge 0.6 series to trunk. | Mike Bayer | 2009-08-06 | 4 | -546/+1016 |
| * | merged [ticket:1486] fix from 0.6 | Mike Bayer | 2009-07-28 | 2 | -4/+13 |
| * | - Fixed bug whereby a load/refresh of joined table | Mike Bayer | 2009-07-25 | 1 | -7/+4 |
| * | - Unary expressions such as DISTINCT propagate their | Mike Bayer | 2009-07-25 | 2 | -6/+5 |
| * | - Fixed a bug in extract() introduced in 0.5.4 whereby | Mike Bayer | 2009-07-17 | 1 | -2/+1 |
| * | - sql | Mike Bayer | 2009-05-29 | 2 | -2/+2 |
| * | - The "polymorphic discriminator" column may be part of a | Mike Bayer | 2009-05-17 | 1 | -1/+1 |
| * | - It is now an error to specify both columns of a binary primaryjoin | Mike Bayer | 2009-05-08 | 1 | -4/+4 |
| * | Added multi part schema name support. Closes #594 and #1341. | Michael Trier | 2009-04-11 | 1 | -6/+14 |
| * | - Fixed bug in relation(), introduced in 0.5.3, | Mike Bayer | 2009-04-02 | 1 | -0/+1 |
| * | Lots of fixes to the code examples to specify imports explicitly. | Michael Trier | 2009-03-31 | 1 | -4/+8 |
| * | extract() is now dialect-sensitive and supports SQLite and others. | Jason Kirtland | 2009-03-30 | 2 | -2/+44 |
| * | - Lazy loader will not use get() if the "lazy load" | Mike Bayer | 2009-03-29 | 1 | -1/+1 |
| * | - An alias() of a select() will convert to a "scalar subquery" | Mike Bayer | 2009-03-21 | 1 | -2/+22 |