| Commit message (Expand) | Author | Age | Files | Lines |
| * | Fix many typos throughout the codebasepr/85 | Alex Gaynor | 2014-04-26 | 2 | -3/+3 |
| * | revert inadvertent pdb | Mike Bayer | 2014-03-28 | 1 | -2/+0 |
| * | - Fixed ORM bug where changing the primary key of an object, then marking | Mike Bayer | 2014-03-28 | 1 | -0/+2 |
| * | - work on fixing some race-condition failures: | Mike Bayer | 2014-03-26 | 1 | -1/+1 |
| * | - Added some new event mechanics for dialect-level events; the initial | Mike Bayer | 2014-03-24 | 2 | -19/+44 |
| * | - An event listener can now be associated with a :class:`.Engine`, | Mike Bayer | 2014-03-22 | 1 | -28/+31 |
| * | - restore the old behavior of the connection pool replacing itself just | Mike Bayer | 2014-03-22 | 1 | -0/+1 |
| * | - A major improvement made to the mechanics by which the :class:`.Engine` | Mike Bayer | 2014-03-22 | 1 | -4/+2 |
| * | - The :meth:`.ConnectionEvents.after_cursor_execute` event is now | Mike Bayer | 2014-03-19 | 1 | -4/+11 |
| * | - Added a new keyword argument ``once=True`` to :func:`.event.listen` | Mike Bayer | 2014-03-11 | 1 | -2/+1 |
| * | docs | Mike Bayer | 2014-02-25 | 1 | -10/+20 |
| * | - Added :paramref:`.MetaData.reflect.**dialect_kwargs` | Mike Bayer | 2014-02-02 | 1 | -7/+16 |
| * | - Fixed 0.9 regression where the new sortable support for :class:`.RowProxy` | Mike Bayer | 2014-01-28 | 1 | -3/+18 |
| * | - doc updates, include links to create_engine from tutorials, cleanup | Mike Bayer | 2014-01-23 | 1 | -11/+20 |
| * | - Fixed the multiple-table "UPDATE..FROM" construct, only usable on | Mike Bayer | 2014-01-20 | 1 | -3/+5 |
| * | - further refine this so that the ordering of columns is maintained as | Mike Bayer | 2014-01-20 | 1 | -8/+1 |
| * | - simplify the mechanics of PrimaryKeyConstraint with regards to reflection; | Mike Bayer | 2014-01-20 | 1 | -10/+15 |
| * | - repair signature for base get_unique_constraints() method | Mike Bayer | 2014-01-20 | 1 | -1/+1 |
| * | - some test fixes | Mike Bayer | 2014-01-19 | 1 | -26/+23 |
| * | - implement kwarg validation and type system for dialect-specific | Mike Bayer | 2014-01-18 | 2 | -1/+29 |
| * | - _cursor_execute() will close the cursor on error; oracle doesn't allow doub... | Mike Bayer | 2014-01-13 | 1 | -12/+12 |
| * | - The MySQL CAST compilation now takes into account aspects of a string | Mike Bayer | 2014-01-13 | 1 | -21/+30 |
| * | revert r2775c95b1ee30831216cc5 which was mostly an inadvertent commit, except... | Mike Bayer | 2014-01-13 | 1 | -30/+21 |
| * | - continue with [ticket:2907] and further clean up how we set up | Mike Bayer | 2014-01-13 | 1 | -17/+41 |
| * | - :class:`.Connection` now associates a new | Mike Bayer | 2014-01-12 | 1 | -8/+8 |
| * | - add new event PoolEvents.invalidate(). allows interception of invalidation | Mike Bayer | 2014-01-12 | 1 | -9/+29 |
| * | new changelog | Mike Bayer | 2014-01-11 | 1 | -21/+30 |
| * | - happy new year | Mike Bayer | 2014-01-05 | 10 | -10/+10 |
| * | - improve documentation for return_defaults() and returned_defaults. [ticket... | Mike Bayer | 2013-12-20 | 1 | -1/+9 |
| * | - The :func:`.engine_from_config` function has been improved so that | Mike Bayer | 2013-12-07 | 4 | -34/+36 |
| * | - A DBAPI that raises an error on ``connect()`` which is not a subclass | Mike Bayer | 2013-12-07 | 1 | -1/+1 |
| * | - reflection of unique constraints backported to 0.8.4 [ticket:1443] | Mike Bayer | 2013-12-03 | 1 | -1/+1 |
| * | - adjustment, the spec says: "Within the user and password field, any ":", | Mike Bayer | 2013-11-25 | 1 | -2/+15 |
| * | - The :func:`.create_engine` routine and the related | Mike Bayer | 2013-11-24 | 1 | -7/+2 |
| * | - Fixed bug where SQL statement would be improperly ASCII-encoded | Mike Bayer | 2013-11-22 | 1 | -1/+1 |
| * | - The :class:`.RowProxy` object is now sortable in Python as a regular | Mike Bayer | 2013-11-19 | 1 | -1/+4 |
| * | - remove informix dialect, moved out to https://bitbucket.org/zzzeek/sqlalche... | Mike Bayer | 2013-11-17 | 1 | -1/+1 |
| * | Fix cross referencespr/44 | Vraj Mohan | 2013-11-14 | 1 | -1/+1 |
| * | Ensure API doc for make_url and resolve references | Vraj Mohan | 2013-11-13 | 1 | -2/+2 |
| * | Fix cross references | Vraj Mohan | 2013-11-12 | 1 | -2/+4 |
| * | Merge branch 'master' of github.com:ijl/sqlalchemy into merge_2183 | Mike Bayer | 2013-10-25 | 1 | -1/+6 |
| |\ |
|
| | * | #2183: Metadata.reflect() foreign keys include options when the dialect expos... | ijl | 2013-10-13 | 1 | -1/+6 |
| * | | An overhaul of expression handling for special symbols particularly | Mike Bayer | 2013-10-23 | 1 | -1/+3 |
| * | | - The regexp used by the :func:`.url.make_url` function now parses | Mike Bayer | 2013-10-23 | 1 | -2/+11 |
| |/ |
|
| * | - The method signature of :meth:`.Dialect.reflecttable`, which in | Mike Bayer | 2013-10-11 | 2 | -11/+12 |
| * | Merge pull request #25 from gthb/ticket_2821 | mike bayer | 2013-09-29 | 2 | -3/+10 |
| |\ |
|
| | * | Hide password in URL and Engine __repr__pr/25 | Gunnlaugur Þór Briem | 2013-09-06 | 2 | -3/+10 |
| * | | Replace a big loop + dict lookup in Connection.execute() with a simple visitorpr/30 | Alex Gaynor | 2013-09-25 | 1 | -18/+7 |
| |/ |
|
| * | plus some more adjustments for mysql, or in general if an Index refers to | Mike Bayer | 2013-08-28 | 1 | -1/+9 |
| * | Fixed bug where using the ``column_reflect`` event to change the ``.key`` | Mike Bayer | 2013-08-28 | 1 | -6/+17 |