| Commit message (Expand) | Author | Age | Files | Lines |
| ... | |
| * | - columns from Alias objects, when used to target result-row columns, must ma... | Mike Bayer | 2007-09-24 | 1 | -4/+13 |
| * | Removed DefaultDialect.ischema and information_schema's ISchema (which incide... | Jason Kirtland | 2007-09-07 | 1 | -7/+0 |
| * | - took out method calls for oid_column | Mike Bayer | 2007-09-04 | 2 | -82/+63 |
| * | - 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 | 2 | -0/+4 |
| * | - got all examples working | Mike Bayer | 2007-09-01 | 1 | -4/+9 |
| * | whats a big commit without some errant print statements ? :) | Mike Bayer | 2007-09-01 | 1 | -1/+0 |
| * | - merged inline inserts branch | Mike Bayer | 2007-09-01 | 3 | -74/+65 |
| * | Extended 'engine_from_config' coercion for QueuePool size / overflow. [ticket... | Jason Kirtland | 2007-08-29 | 1 | -8/+17 |
| * | engine.url cleanups [ticket:742] | Jason Kirtland | 2007-08-29 | 1 | -31/+51 |
| * | - 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 | 2 | -6/+6 |
| * | -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 |
| * | A couple critical path optimizations | Jason Kirtland | 2007-08-21 | 1 | -2/+2 |
| * | pool_threadlocal on by default | Mike Bayer | 2007-08-20 | 1 | -1/+1 |
| * | removed unnecessary _branch calls | Mike Bayer | 2007-08-20 | 2 | -7/+8 |
| * | - method call removal | Mike Bayer | 2007-08-20 | 2 | -75/+30 |
| * | - Engine and TLEngine assume "threadlocal" behavior on Pool; both use connect() | Mike Bayer | 2007-08-20 | 3 | -24/+11 |
| * | - Connection.begin() no longer accepts nested=True, a possible source of conf... | Jason Kirtland | 2007-08-19 | 6 | -376/+512 |
| * | pyflakes mop-up | Jason Kirtland | 2007-08-19 | 2 | -4/+2 |
| * | 1. Module layout. sql.py and related move into a package called "sql". | Mike Bayer | 2007-08-18 | 2 | -86/+64 |
| * | - added close() method to Transaction. closes out a transaction using rollback | Mike Bayer | 2007-08-17 | 1 | -0/+14 |
| * | - threadlocal TLConnection, when closes for real, forces parent TLSession | Mike Bayer | 2007-08-17 | 1 | -0/+6 |
| * | - turned twophase=True on in test | Mike Bayer | 2007-08-17 | 1 | -0/+3 |
| * | - added extra argument con_proxy to ConnectionListener interface checkout/che... | Mike Bayer | 2007-08-17 | 1 | -13/+44 |
| * | - moved test/orm/fixtures.py to testlib | Mike Bayer | 2007-08-16 | 1 | -6/+6 |
| * | - merged "fasttypes" branch. this branch changes the signature | Mike Bayer | 2007-08-14 | 2 | -51/+64 |
| * | added engine_from_config() function for helping to create_engine() | Mike Bayer | 2007-08-14 | 2 | -1/+39 |
| * | Removed unused imports, other import adjustments per pyflakes | Jason Kirtland | 2007-08-13 | 3 | -4/+4 |
| * | auto-commit after LOAD DATA INFILE for mysql | Jason Kirtland | 2007-08-12 | 1 | -3/+5 |
| * | added "should_commit()" hook to ExecutionContext. dialects can override with... | Mike Bayer | 2007-08-12 | 2 | -4/+14 |
| * | Added an exception hierarchy shadowing DB-API exc types | Jason Kirtland | 2007-08-11 | 3 | -3/+5 |
| * | inlined encoding of result column names | Mike Bayer | 2007-08-11 | 2 | -6/+1 |
| * | attempting to get oracle XID to work. not there yet. | Mike Bayer | 2007-08-11 | 2 | -2/+18 |
| * | switch (simple) occurences of 'if len(x)' to 'if x': find . -name '*.py' |xar... | Jonathan Ellis | 2007-08-03 | 2 | -2/+2 |
| * | - Dialects can be queried for the server version (sqlite and mysql only with ... | Jason Kirtland | 2007-08-03 | 1 | -0/+5 |
| * | Tweak 'poolclass' default arg processing [ticket:437] | Jason Kirtland | 2007-08-01 | 1 | -1/+2 |
| * | - assurances that context.connection is safe to use by column default functio... | Mike Bayer | 2007-07-31 | 2 | -14/+30 |
| * | 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 |
| * | - clarified LoaderStrategy implementations, centralized deferred column loading | Mike Bayer | 2007-07-27 | 2 | -9/+25 |
| * | merging 0.4 branch to trunk. see CHANGES for details. 0.3 moves to maintena... | Mike Bayer | 2007-07-27 | 6 | -297/+536 |
| * | Merged reference fixes from r2986 | Jason Kirtland | 2007-07-19 | 1 | -1/+1 |