| Commit message (Expand) | Author | Age | Files | Lines |
... | |
| * | - Calling fetchone() or similar on a result that | Mike Bayer | 2010-08-03 | 1 | -8/+30 |
* | | - class level listeners can be added after the fact | Mike Bayer | 2010-07-27 | 1 | -1/+5 |
* | | - pretty much all tests passing, maybe some callcounts are off | Mike Bayer | 2010-07-25 | 1 | -2/+3 |
* | | - got engine events partially working, needs work on return value considerations | Mike Bayer | 2010-07-24 | 1 | -101/+95 |
* | | shoulda listened harder in APL class | Mike Bayer | 2010-07-24 | 1 | -39/+77 |
* | | - worked it out so that classes declare a nested class "event", | Mike Bayer | 2010-07-24 | 1 | -1/+2 |
* | | - initial "events" idea. will replace all Extension, Proxy, Listener | Mike Bayer | 2010-07-24 | 1 | -18/+60 |
|/ |
|
* | document the crap out of text(), Session.execute() | Mike Bayer | 2010-07-20 | 1 | -1/+10 |
* | - Fixed @memoized_property and @memoized_instancemethod | Mike Bayer | 2010-06-19 | 1 | -2/+2 |
* | - Pool classes will reuse the same "pool_logging_name" setting | Mike Bayer | 2010-05-30 | 1 | -4/+23 |
* | 79 char lines for base.py | Mike Bayer | 2010-05-30 | 1 | -138/+281 |
* | docs on dispose | Mike Bayer | 2010-05-15 | 1 | -0/+23 |
* | since we are calling traverse_single within ddl.py, call traverse_single at t... | Mike Bayer | 2010-04-16 | 1 | -1/+1 |
* | - Table.create() and Table.drop() no longer apply metadata- | Mike Bayer | 2010-04-16 | 1 | -2/+2 |
* | - Added get_pk_constraint() to reflection.Inspector, similar | Mike Bayer | 2010-04-15 | 1 | -0/+15 |
* | - Added new 'compiled_cache' execution option. A dictionary | Mike Bayer | 2010-04-07 | 1 | -3/+15 |
* | - Fixed bug in execution_options() feature whereby the existing | Mike Bayer | 2010-04-07 | 1 | -3/+11 |
* | - The sqlalchemy.orm.shard module now becomes an extension, | Mike Bayer | 2010-03-28 | 1 | -0/+3 |
* | removed all dialect table_names() methods and standardized | Mike Bayer | 2010-03-19 | 1 | -1/+1 |
* | - The visit_pool() method of Dialect is removed, and replaced with | Mike Bayer | 2010-03-15 | 1 | -2/+31 |
* | - Added "logging_name" argument to create_engine(), Pool() constructor | Mike Bayer | 2010-03-13 | 1 | -2/+4 |
* | fixed up docs for execution_options() across all three locations. | Mike Bayer | 2010-03-09 | 1 | -7/+12 |
* | - the execution sequence pulls all rowcount/last inserted ID | Mike Bayer | 2010-02-28 | 1 | -14/+41 |
* | - orm: Removed a lot of logging that nobody really cares about, | Mike Bayer | 2010-02-28 | 1 | -7/+11 |
* | - threadlocal engine wasn't properly closing the connection | Mike Bayer | 2010-02-27 | 1 | -5/+9 |
* | - fix C version of rowproxy pickling so that it pickles to the same format | Gaëtan de Menten | 2010-02-14 | 1 | -13/+8 |
* | - Added an optional C extension to speed up the sql layer by | Gaëtan de Menten | 2010-02-13 | 1 | -157/+225 |
* | - Restored the keys() method to ResultProxy. | Mike Bayer | 2010-02-10 | 1 | -1/+8 |
* | add sql_compiler property to all Compiled subclasses for convenience | Mike Bayer | 2010-02-07 | 1 | -0/+10 |
* | - FunctionElement subclasses are now directly executable the | Mike Bayer | 2010-02-07 | 1 | -1/+1 |
* | - the "connection" argument from engine.transaction() and | Mike Bayer | 2010-01-29 | 1 | -29/+38 |
* | - inline some code and turn some instance-level defaults into class level | Mike Bayer | 2010-01-29 | 1 | -11/+3 |
* | - Connection has execution_options(), generative method | Mike Bayer | 2010-01-24 | 1 | -6/+6 |
* | - move "should_autocommit" to a deferred method. connection wont call it if... | Mike Bayer | 2010-01-24 | 1 | -3/+2 |
* | - the "threadlocal" engine has been rewritten and simplified | Mike Bayer | 2010-01-24 | 1 | -2/+3 |
* | clarify intent | Mike Bayer | 2010-01-24 | 1 | -1/+1 |
* | fix ResultProxy for SQLite truncated names | Gaëtan de Menten | 2010-01-20 | 1 | -1/+1 |
* | moved the metadata step of ResultProxy into a ResultMetaData object. this al... | Mike Bayer | 2010-01-20 | 1 | -175/+147 |
* | doc updates partially from [ticket:1651] | Mike Bayer | 2010-01-17 | 1 | -7/+19 |
* | - ConnectionProxy now has wrapper methods for all transaction | Mike Bayer | 2010-01-16 | 1 | -0/+30 |
* | happy new year | Mike Bayer | 2010-01-07 | 1 | -1/+1 |
* | - added _with_options() to Connection. not publicizing this yet. | Mike Bayer | 2009-12-18 | 1 | -3/+21 |
* | - reworked the DDL generation of ENUM and similar to be more platform agnostic. | Mike Bayer | 2009-12-06 | 1 | -0/+21 |
* | - pg8000 + postgresql dialects now check for float/numeric return | Mike Bayer | 2009-11-15 | 1 | -2/+1 |
* | - Fixed bug in two-phase transaction whereby commit() method | Mike Bayer | 2009-11-04 | 1 | -2/+1 |
* | fix MySQL initialize to use defaultdialect first | Mike Bayer | 2009-11-03 | 1 | -4/+1 |
* | - dialect.get_default_schema_name(connection) is now | Mike Bayer | 2009-11-03 | 1 | -9/+25 |
* | - ResultProxy internals have been overhauled to greatly reduce | Mike Bayer | 2009-10-24 | 1 | -118/+149 |
* | - initial MySQL Connector/Python driver | Mike Bayer | 2009-10-18 | 1 | -1/+3 |
* | - DefaultRunner and subclasses have been removed. The job | Mike Bayer | 2009-10-15 | 1 | -70/+3 |