| Commit message (Expand) | Author | Age | Files | Lines |
| * | - named_with_column becomes an attribute | Mike Bayer | 2007-11-25 | 1 | -29/+47 |
| * | - decruftify old visitors used by orm, convert to functions that | Mike Bayer | 2007-11-24 | 1 | -7/+12 |
| * | - all kinds of cleanup, tiny-to-slightly-significant speed improvements | Mike Bayer | 2007-11-24 | 1 | -16/+12 |
| * | Migrated Connection.properties to Connection.info ('info' is the new standard... | Jason Kirtland | 2007-11-18 | 1 | -2/+7 |
| * | - DeferredColumnLoader checks row for column, if present sends it to | Mike Bayer | 2007-11-14 | 1 | -0/+2 |
| * | - anonymous column expressions are automatically labeled. | Mike Bayer | 2007-11-10 | 1 | -0/+1 |
| * | - <Engine|Connection>._execute_clauseelement becomes a public method | Mike Bayer | 2007-11-07 | 1 | -5/+8 |
| * | - fixed the close() method on Transaction when using strategy='threadlocal' | Mike Bayer | 2007-11-07 | 1 | -1/+1 |
| * | - rewritten ClauseAdapter merged from the eager_minus_join branch; this is a ... | Mike Bayer | 2007-11-03 | 1 | -1/+1 |
| * | - merged factor_down_bindparams branch. | Mike Bayer | 2007-11-01 | 1 | -36/+35 |
| * | - inlined a couple of context variables | Mike Bayer | 2007-10-27 | 1 | -17/+14 |
| * | Added support for dialects that have both sequences and autoincrementing PKs. | Jason Kirtland | 2007-10-23 | 1 | -4/+9 |
| * | - The post_exec() hook now gets invoked before autocommit fires. | Jason Kirtland | 2007-10-23 | 1 | -2/+3 |
| * | - Loosened up test_cant_execute_join for oracle (probably) + bonus typo fix | Jason Kirtland | 2007-10-08 | 1 | -2/+2 |
| * | - The no-arg ResultProxy._row_processor() is now the class attribute | Jason Kirtland | 2007-10-02 | 1 | -92/+90 |
| * | - Removed duplicate RowProxy.__len__ definition and some range(0, 1) lint | Jason Kirtland | 2007-10-02 | 1 | -5/+7 |
| * | Dropped the leading '__' from generated savepoint names, '_' isn't universall... | Jason Kirtland | 2007-09-27 | 1 | -1/+1 |
| * | - created a link between QueryContext and SelectionContext; the attribute | Mike Bayer | 2007-09-26 | 1 | -13/+3 |
| * | - columns from Alias objects, when used to target result-row columns, must ma... | Mike Bayer | 2007-09-24 | 1 | -4/+13 |
| * | - took out method calls for oid_column | Mike Bayer | 2007-09-04 | 1 | -35/+33 |
| * | - removed "parameters" argument from clauseelement.compile(), replaced with | Mike Bayer | 2007-09-04 | 1 | -29/+37 |
| * | - mapper compilation has been reorganized such that most compilation | Mike Bayer | 2007-09-02 | 1 | -1/+0 |
| * | sequence pre-executes dont create an ExecutionContext, use straight cursor | Mike Bayer | 2007-09-01 | 1 | -22/+34 |
| * | factored out uses_sequences_for_inserts() into | Mike Bayer | 2007-09-01 | 1 | -0/+3 |
| * | - got all examples working | Mike Bayer | 2007-09-01 | 1 | -4/+9 |
| * | - merged inline inserts branch | Mike Bayer | 2007-09-01 | 1 | -11/+20 |
| * | - tightened down the screws on logging a little bit | Mike Bayer | 2007-08-22 | 1 | -8/+6 |
| * | - restored engine.echo flag | Mike Bayer | 2007-08-22 | 1 | -0/+1 |
| * | Housekeeping. | Jason Kirtland | 2007-08-22 | 1 | -2/+2 |
| * | -removed echo_property() function, moved logging checks to | Mike Bayer | 2007-08-21 | 1 | -5/+3 |
| * | - implemented __len__() accessor on RowProxy | Mike Bayer | 2007-08-21 | 1 | -0/+3 |
| * | removed unnecessary _branch calls | Mike Bayer | 2007-08-20 | 1 | -3/+2 |
| * | - method call removal | Mike Bayer | 2007-08-20 | 1 | -31/+15 |
| * | - Engine and TLEngine assume "threadlocal" behavior on Pool; both use connect() | Mike Bayer | 2007-08-20 | 1 | -4/+5 |
| * | - Connection.begin() no longer accepts nested=True, a possible source of conf... | Jason Kirtland | 2007-08-19 | 1 | -231/+333 |
| * | 1. Module layout. sql.py and related move into a package called "sql". | Mike Bayer | 2007-08-18 | 1 | -80/+52 |
| * | - added close() method to Transaction. closes out a transaction using rollback | Mike Bayer | 2007-08-17 | 1 | -0/+14 |
| * | - merged "fasttypes" branch. this branch changes the signature | Mike Bayer | 2007-08-14 | 1 | -12/+12 |
| * | Removed unused imports, other import adjustments per pyflakes | Jason Kirtland | 2007-08-13 | 1 | -1/+1 |
| * | added "should_commit()" hook to ExecutionContext. dialects can override with... | Mike Bayer | 2007-08-12 | 1 | -3/+8 |
| * | Added an exception hierarchy shadowing DB-API exc types | Jason Kirtland | 2007-08-11 | 1 | -1/+2 |
| * | inlined encoding of result column names | Mike Bayer | 2007-08-11 | 1 | -1/+1 |
| * | attempting to get oracle XID to work. not there yet. | Mike Bayer | 2007-08-11 | 1 | -1/+9 |
| * | - Dialects can be queried for the server version (sqlite and mysql only with ... | Jason Kirtland | 2007-08-03 | 1 | -0/+5 |
| * | - assurances that context.connection is safe to use by column default functio... | Mike Bayer | 2007-07-31 | 1 | -11/+23 |
| * | MetaData can now reflect() all tables in the database en-masse thanks to tabl... | Jason Kirtland | 2007-07-31 | 1 | -3/+17 |
| * | add warnings for deprecated methods and options | Jonathan Ellis | 2007-07-30 | 1 | -1/+2 |
| * | engine.table_names() | Jonathan Ellis | 2007-07-29 | 1 | -0/+12 |
| * | - removed auto_close_cursors and disallow_open_cursors arguments from Pool; | Mike Bayer | 2007-07-29 | 1 | -1/+2 |
| * | some comments, pragma no cover on some deprecated query methods | Mike Bayer | 2007-07-27 | 1 | -1/+1 |