| Commit message (Expand) | Author | Age | Files | Lines |
| * | 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 |
| * | - A rework to the way that "quoted" identifiers are handled, in that | Mike Bayer | 2013-08-27 | 3 | -1/+61 |
| * | - ensure rowcount is returned for an UPDATE with no implicit returning | Mike Bayer | 2013-08-25 | 1 | -5/+4 |
| * | - The ``version_id_generator`` parameter of ``Mapper`` can now be specified | Mike Bayer | 2013-08-25 | 3 | -0/+23 |
| * | - apply an import refactoring to the ORM as well | Mike Bayer | 2013-08-14 | 1 | -3/+1 |
| * | - A large refactoring of the ``sqlalchemy.sql`` package has reorganized | Mike Bayer | 2013-08-12 | 7 | -312/+21 |
| * | find some more inline imports and move them out | Mike Bayer | 2013-08-04 | 1 | -1/+1 |
| * | - don't need resolve, don't need import for this. just look in sys.modules, | Mike Bayer | 2013-08-04 | 1 | -1/+1 |
| * | a missing cursor.close() here caused a *huge* amount of weird locking issues... | Mike Bayer | 2013-08-02 | 1 | -7/+10 |
| * | - assorted fixes raised by pypy 2.1beta2, but all of which are good | Mike Bayer | 2013-08-01 | 1 | -0/+24 |
| * | Dialect.initialize() is not called a second time if an :class:`.Engine` | Mike Bayer | 2013-07-11 | 1 | -0/+1 |
| * | - refactor pool a bit so that intent between ConnectionRecord/ConnectionFairy... | Mike Bayer | 2013-07-02 | 3 | -24/+32 |
| * | these notes about **kw are incorrect, we are talking about the return value here | Mike Bayer | 2013-06-09 | 1 | -8/+0 |
| * | - get_unique_constraints() pull request | Mike Bayer | 2013-06-09 | 2 | -0/+4 |
| * | Add basic support of unique constraints reflectionpr/4 | Roman Podolyaka | 2013-06-09 | 2 | -0/+39 |
| * | Merge branch 'ticket_2587' | Mike Bayer | 2013-06-04 | 1 | -0/+5 |
| |\ |
|
| | * | - add a flag to DefaultDialect for this so that people will have some | Mike Bayer | 2013-06-04 | 1 | -0/+3 |
| | * | working through tests.... | Mike Bayer | 2013-06-02 | 1 | -0/+2 |
| * | | Merge branch 'master' into ticket_1068 | Mike Bayer | 2013-06-03 | 7 | -102/+87 |
| |\ \
| |/ |
|
| | * | get profile 1a back down to 5100 calls, that one was 10% greater due to this | Mike Bayer | 2013-05-26 | 1 | -3/+3 |
| | * | a pass where we try to squash down as many list()/keys() combinations | Mike Bayer | 2013-05-26 | 1 | -1/+1 |
| | * | do a sweep of some obvious 3kisms | Mike Bayer | 2013-05-26 | 3 | -9/+6 |
| | * | - add a test specific to sqlite testing cursor.description encoding (should | Mike Bayer | 2013-05-26 | 1 | -0/+2 |
| | * | that's all of engine | Mike Bayer | 2013-05-04 | 1 | -2/+6 |
| | * | - OK we have -w sql passing for: sqlite, postgresql, oursql 2.7 + 3.3, mysqld... | Mike Bayer | 2013-05-04 | 1 | -1/+1 |
| | * | use logging to output exc_info here | Mike Bayer | 2013-05-04 | 1 | -11/+5 |
| | * | - test_types, test_compiler, with sqlite at least | Mike Bayer | 2013-04-28 | 1 | -1/+3 |
| | * | result | Mike Bayer | 2013-04-28 | 1 | -2/+2 |
| | * | import of "sqlalchemy" and "sqlalchemy.orm" works. | Mike Bayer | 2013-04-27 | 2 | -21/+11 |
| | * | plugging away | Mike Bayer | 2013-04-27 | 3 | -35/+28 |
| | * | - the raw 2to3 run | Mike Bayer | 2013-04-27 | 7 | -93/+96 |
| * | | attempt number one, doesn't detect though if the label in the order by is not... | Mike Bayer | 2013-05-27 | 1 | -0/+2 |
| |/ |
|
| * | Reworked internal exception raises that emit | Mike Bayer | 2013-04-18 | 3 | -49/+25 |
| * | Improvements to Connection auto-invalidation | Mike Bayer | 2013-04-11 | 1 | -24/+32 |
| * | A major fix to the way in which a select() object produces | Mike Bayer | 2013-04-11 | 1 | -1/+1 |
| * | - add an event to testing so that other dialects can intercept "test_needs_au... | Mike Bayer | 2013-03-24 | 1 | -0/+4 |
| * | Fixed bug whereby a DBAPI that can return "0" | Mike Bayer | 2013-03-23 | 1 | -1/+1 |
| * | - :meth:`.MetaData.create_all` and :meth:`.MetaData.drop_all` will | Mike Bayer | 2013-03-02 | 1 | -3/+3 |