| Commit message (Expand) | Author | Age | Files | Lines |
| * | Add max_identifier_length parameter; warn for Oracle | Mike Bayer | 2019-10-02 | 1 | -5/+33 |
| * | Render LIMIT/OFFSET conditions after compile on select dialects | Mike Bayer | 2019-08-30 | 1 | -65/+58 |
| * | Implement checkfirst for Index.create(), Index.drop() | Mike Bayer | 2019-08-06 | 1 | -0/+9 |
| * | Modernize internal reflection | Mike Bayer | 2019-08-06 | 1 | -15/+0 |
| * | Merge "Remove threadlocal engine strategy, engine strategies pool threadlocal" | mike bayer | 2019-08-01 | 1 | -1/+0 |
| |\ |
|
| | * | Remove threadlocal engine strategy, engine strategies pool threadlocal | Mike Bayer | 2019-07-15 | 1 | -1/+0 |
| * | | Support tuple IN VALUES for SQLite, others | Mike Bayer | 2019-07-19 | 1 | -1/+5 |
| |/ |
|
| * | Move initialize do_rollback() outside of the dialect | Matthew Wilkes | 2019-05-09 | 1 | -2/+0 |
| * | Add resolve_fks=False option for reflection | Mike Bayer | 2019-02-28 | 1 | -2/+8 |
| * | Fix many spell glitches | Lele Gaifax | 2019-01-25 | 1 | -1/+1 |
| * | Add deprecation warnings to all deprecated APIs | Mike Bayer | 2019-01-23 | 1 | -0/+9 |
| * | happy new year | Mike Bayer | 2019-01-11 | 1 | -1/+1 |
| * | Post black reformatting | Mike Bayer | 2019-01-06 | 1 | -12/+21 |
| * | Run black -l 79 against all source files | Mike Bayer | 2019-01-06 | 1 | -179/+237 |
| * | Maintain compiled_params / replacement_expressions within expanding IN | Mike Bayer | 2018-12-21 | 1 | -34/+48 |
| * | Support tuples of heterogeneous types for empty expanding IN | Mike Bayer | 2018-10-03 | 1 | -1/+4 |
| * | Add use_nchar_for_unicode flag; don't use nchar types for generic unicode | Mike Bayer | 2018-09-22 | 1 | -0/+1 |
| * | Add support of empty list in exanding of bindparam | Nicolas Rolin | 2018-08-07 | 1 | -3/+5 |
| * | Add do_setinputsizes event for cx_Oracle | Mike Bayer | 2018-06-27 | 1 | -16/+24 |
| * | render WITH clause after INSERT for INSERT..SELECT on Oracle, MySQL | Mike Bayer | 2018-06-18 | 1 | -0/+1 |
| * | Turn oracle BINARY_DOUBLE, BINARY_FLOAT, DOUBLE_PRECISION into floats | Mike Bayer | 2018-05-25 | 1 | -1/+1 |
| * | call setinputsizes() for integer types | Mike Bayer | 2018-05-18 | 1 | -15/+18 |
| * | SQL Server is not native boolean; add new flag for CHECK constraint | Mike Bayer | 2018-05-10 | 1 | -0/+1 |
| * | Allow bind processors to work with expanding IN | Mike Bayer | 2018-02-23 | 1 | -1/+1 |
| * | happy new year | Mike Bayer | 2018-01-12 | 1 | -1/+1 |
| * | Fix regexp for expanding IN | Mike Bayer | 2017-12-01 | 1 | -1/+1 |
| * | Add multivalued insert context for defaultsreview/mike_bayer/ticket_4075 | Mike Bayer | 2017-09-16 | 1 | -3/+84 |
| * | Refactor for cx_Oracle version 6oracle_numeric | Mike Bayer | 2017-09-11 | 1 | -4/+6 |
| * | Add new sane_rowcount_w_returning flag | Mike Bayer | 2017-08-31 | 1 | -0/+4 |
| * | Add new "expanding" feature to bindparam() | Mike Bayer | 2017-04-07 | 1 | -3/+110 |
| * | ResultProxy won't autoclose connection until state flag is set | Mike Bayer | 2017-04-03 | 1 | -4/+4 |
| * | Apply type processing to untyped preexec default clause | Mike Bayer | 2017-03-30 | 1 | -1/+5 |
| * | Integrate "pre-ping" into connection pool. | Mike Bayer | 2017-03-20 | 1 | -0/+20 |
| * | New features from python 2.7 | Катаев Денис | 2017-03-17 | 1 | -3/+3 |
| * | Implement comments for tables, columns | Frazer McLean | 2017-03-17 | 1 | -0/+2 |
| * | Consult compiled paramstyle on execute_compiled | Mike Bayer | 2017-03-15 | 1 | -1/+1 |
| * | Add "empty in" strategies; default to "static" | Mike Bayer | 2017-03-14 | 1 | -0/+12 |
| * | update for 2017 copyright | Mike Bayer | 2017-01-04 | 1 | -1/+1 |
| * | Add _extend_on deduplicating set for metadata.reflect() | Mike Bayer | 2016-11-23 | 1 | -2/+3 |
| * | Add support for server side cursors to mysqldb and pymysql | Roman Podoliaka | 2016-11-10 | 1 | -2/+44 |
| * | spelling: Postgresql -> PostgreSQL | Ville Skyttä | 2016-10-08 | 1 | -1/+1 |
| * | Propagate execution_options at compile stage | Mike Bayer | 2016-10-05 | 1 | -2/+2 |
| * | Check row for None with implicit returning PK to accommodate ON CONFLICT | Mike Bayer | 2016-10-04 | 1 | -1/+5 |
| * | Handle BaseException in all _handle_dbapi_error | Mike Bayer | 2016-09-21 | 1 | -2/+2 |
| * | Check for supports_execution at ClauseElement base | Mike Bayer | 2016-08-31 | 1 | -2/+3 |
| * | Work w/ prefetch even for selects, if present | Mike Bayer | 2016-07-12 | 1 | -22/+37 |
| * | - happy new year | Mike Bayer | 2016-01-29 | 1 | -1/+1 |
| * | - calling str() on a core sql construct has been made more "friendly", | Mike Bayer | 2016-01-19 | 1 | -0/+17 |
| * | - A deep improvement to the recently added :meth:`.TextClause.columns` | Mike Bayer | 2016-01-14 | 1 | -1/+2 |
| * | - reorganize schema_translate_map to be succinct and gain the performance | Mike Bayer | 2016-01-11 | 1 | -3/+7 |