| Commit message (Expand) | Author | Age | Files | Lines |
| ... | |
| * | - another heap of inlinings and now I really have to be done with this | Mike Bayer | 2010-12-21 | 1 | -9/+15 |
| * | more inlines | Mike Bayer | 2010-12-19 | 1 | -25/+25 |
| * | establish default for returns_unicode_strings in py3k | Mike Bayer | 2010-12-19 | 1 | -0/+2 |
| * | - duh, compiled is per dialect | Mike Bayer | 2010-12-19 | 1 | -1/+1 |
| * | - fixes for mysql and I'm ready to replace this whole adapt() business with a... | Mike Bayer | 2010-12-14 | 1 | -2/+4 |
| * | - system to cache the bind/result processors in a dialect-wide registry. | Mike Bayer | 2010-12-13 | 1 | -1/+4 |
| * | - why type.dialect_impl(dialect).bind_processor(dialect), caching just the impl? | Mike Bayer | 2010-12-13 | 1 | -17/+8 |
| * | - another easy win, cache the calc of bind processors in the compiled object | Mike Bayer | 2010-12-12 | 1 | -7/+2 |
| * | - clean up the batch insert thing | Mike Bayer | 2010-12-11 | 1 | -49/+16 |
| * | - initial stab at using executemany() for inserts in the ORM when possible | Mike Bayer | 2010-12-10 | 1 | -17/+43 |
| * | - more inlining. nominal execution on sqlite down to 36 calls, from 51 in 0.6. | Mike Bayer | 2010-12-05 | 1 | -2/+0 |
| * | - inline the various construction methods of DefaultExecutionContext. This | Mike Bayer | 2010-12-05 | 1 | -154/+190 |
| * | - ResultProxy and friends always reference the DBAPI connection at the same time | Mike Bayer | 2010-12-05 | 1 | -1/+1 |
| * | - NullPool is now used by default for SQLite file- | Mike Bayer | 2010-11-28 | 1 | -1/+5 |
| * | - engine_from_config() now accepts 'debug' for | Mike Bayer | 2010-10-15 | 1 | -1/+0 |
| * | - The generated index name also is based on | Mike Bayer | 2010-08-02 | 1 | -0/+11 |
| * | - updated obsolete docs regarding sequences, RETURNING for pgrel_0_6_2 | Mike Bayer | 2010-07-06 | 1 | -22/+34 |
| * | - Fixed bug that prevented implicit RETURNING from functioning | Mike Bayer | 2010-04-22 | 1 | -3/+8 |
| * | - Added get_pk_constraint() to reflection.Inspector, similar | Mike Bayer | 2010-04-15 | 1 | -0/+11 |
| * | mssql+mxodbc should use executedirect for all selects and execute for insert/... | Mike Bayer | 2010-03-26 | 1 | -1/+4 |
| * | - pyodbc can do *some* unicode with sybase, python-sybase not at all. | Mike Bayer | 2010-03-17 | 1 | -1/+1 |
| * | - added pyodbc for sybase driver. | Mike Bayer | 2010-03-17 | 1 | -0/+1 |
| * | - The visit_pool() method of Dialect is removed, and replaced with | Mike Bayer | 2010-03-15 | 1 | -0/+14 |
| * | - initial working version of sybase, with modifications to the transactional | Mike Bayer | 2010-03-14 | 1 | -1/+5 |
| * | oursql doesn't like the cursor being reused without fetch being finished | Mike Bayer | 2010-03-12 | 1 | -13/+15 |
| * | - Added preliminary support for Oracle's WITH_UNICODE | Mike Bayer | 2010-03-12 | 1 | -1/+9 |
| * | refine that a bit | Mike Bayer | 2010-03-11 | 1 | -20/+15 |
| * | adding windows-appropriate levels of pain to unicode handling | Mike Bayer | 2010-03-11 | 1 | -2/+2 |
| * | add a third state to converts_unicode_strings - "conditional". at the moment | Mike Bayer | 2010-03-11 | 1 | -2/+18 |
| * | - the execution sequence pulls all rowcount/last inserted ID | Mike Bayer | 2010-02-28 | 1 | -15/+21 |
| * | - simplify the OurSQL dialect regarding py3k, this version gives it a fairly | Mike Bayer | 2010-02-28 | 1 | -15/+14 |
| * | working on pyodbc / mxodbc | Mike Bayer | 2010-02-27 | 1 | -0/+5 |
| * | Changed bind parameters to be passed as a tuple. Some drivers don't like to r... | Michael Trier | 2010-02-26 | 1 | -2/+2 |
| * | - The assert_unicode flag is deprecated. SQLAlchemy will raise | Mike Bayer | 2010-02-25 | 1 | -1/+8 |
| * | - inline some code and turn some instance-level defaults into class level | Mike Bayer | 2010-01-29 | 1 | -25/+50 |
| * | - the "autocommit" flag on select() and text() as well | Mike Bayer | 2010-01-28 | 1 | -11/+13 |
| * | - union(), intersect(), except() and other "compound" types | Mike Bayer | 2010-01-25 | 1 | -2/+3 |
| * | - Connection has execution_options(), generative method | Mike Bayer | 2010-01-24 | 1 | -3/+4 |
| * | - move "should_autocommit" to a deferred method. connection wont call it if... | Mike Bayer | 2010-01-24 | 1 | -7/+16 |
| * | - added native INTERVAL type to the dialect. This supports | Mike Bayer | 2010-01-18 | 1 | -3/+4 |
| * | statement_options -> execution_options | Mike Bayer | 2010-01-17 | 1 | -2/+2 |
| * | - added "statement_options()" to Query, to so options can be | Mike Bayer | 2010-01-16 | 1 | -1/+3 |
| * | happy new year | Mike Bayer | 2010-01-07 | 1 | -1/+1 |
| * | - The version_id_col feature on mapper() will raise a warning when | Mike Bayer | 2009-12-18 | 1 | -1/+5 |
| * | add a warning for unported dialects. considered a full blown NotImplemented... | Mike Bayer | 2009-12-06 | 1 | -0/+5 |
| * | - reworked the DDL generation of ENUM and similar to be more platform agnostic. | Mike Bayer | 2009-12-06 | 1 | -0/+3 |
| * | scan for autocommit based on text() specific flag, saves isinstance() call on... | Mike Bayer | 2009-11-10 | 1 | -2/+2 |
| * | - dialect.get_default_schema_name(connection) is now | Mike Bayer | 2009-11-03 | 1 | -2/+7 |
| * | - The psycopg2 dialect now uses psycopg2's "unicode extension" | Mike Bayer | 2009-10-26 | 1 | -0/+21 |
| * | - initial MySQL Connector/Python driver | Mike Bayer | 2009-10-18 | 1 | -1/+5 |