| Commit message (Expand) | Author | Age | Files | Lines |
| * | - start trying to move things into __slots__. This seems to reduce theslots | Mike Bayer | 2015-01-04 | 11 | -96/+132 |
| * | - use a different bitwise approach here that doesn't require iterating | Mike Bayer | 2015-01-03 | 3 | -6/+16 |
| * | - The :class:`.mysql.SET` type has been overhauled to no longer | Mike Bayer | 2015-01-03 | 2 | -51/+116 |
| * | - tighten the inspection in _ColumnEntity to reduce unnecessary | Mike Bayer | 2015-01-03 | 1 | -14/+14 |
| * | - test failures: | Mike Bayer | 2015-01-02 | 2 | -2/+1 |
| * | - repair drop_all_tables | Mike Bayer | 2015-01-02 | 1 | -1/+1 |
| * | - restate sort_tables in terms of a more fine grained | Mike Bayer | 2015-01-01 | 10 | -75/+441 |
| * | - Added a new accessor :attr:`.Table.foreign_key_constraints` | Mike Bayer | 2015-01-01 | 1 | -0/+27 |
| * | - remove the "edges" from the message here. It's illegible | Mike Bayer | 2015-01-01 | 1 | -1/+1 |
| * | - fix links for loading, add a redirect page | Mike Bayer | 2014-12-27 | 2 | -3/+3 |
| * | corrections | Mike Bayer | 2014-12-27 | 7 | -5/+7 |
| * | - corrections | Mike Bayer | 2014-12-27 | 7 | -13/+22 |
| * | - typo fixes #3269 | Mike Bayer | 2014-12-27 | 1 | -1/+1 |
| * | - ouch, this needs to be in dbapi, not module level! | Mike Bayer | 2014-12-19 | 1 | -7/+8 |
| * | - make the google deprecation messages more specific, use full URL | Mike Bayer | 2014-12-19 | 2 | -4/+15 |
| * | Merge branch 'update-gaerdbms-docs' of https://bitbucket.org/rob_b/sqlalchemy... | Mike Bayer | 2014-12-19 | 1 | -0/+12 |
| |\ |
|
| | * | Update gaerdbms to highlight improved connection method | Rob Berry | 2014-12-18 | 1 | -0/+12 |
| * | | Maul the evaulate & friends typo | Priit Laes | 2014-12-19 | 7 | -8/+8 |
| * | | - Fixed bug where using a :class:`.TypeDecorator` that implemented | Mike Bayer | 2014-12-19 | 1 | -3/+7 |
| |/ |
|
| * | - squash-merge the improve_toc branch, which moves all the Sphinx styling | Mike Bayer | 2014-12-17 | 2 | -1374/+3 |
| * | - Added a version check to the MySQLdb dialect surrounding the | Mike Bayer | 2014-12-16 | 1 | -6/+7 |
| * | - rework sqlite FK and unique constraint system to combine both PRAGMA | Mike Bayer | 2014-12-13 | 1 | -112/+187 |
| * | - fix unique constraint parsing for sqlite -- may return '' for name, however | Jon Nelson | 2014-12-13 | 1 | -1/+1 |
| * | - Added new method :meth:`.Session.invalidate`, functions similarly | Mike Bayer | 2014-12-12 | 1 | -2/+40 |
| * | - fix up query update /delete documentation, make warnings | Mike Bayer | 2014-12-10 | 1 | -69/+110 |
| * | - keep working on fixing #3266, more cases, more tests | Mike Bayer | 2014-12-10 | 1 | -4/+5 |
| * | - identify another spot where _handle_dbapi_error() needs to do something | Mike Bayer | 2014-12-08 | 1 | -3/+4 |
| * | - simplify the "noconnection" error handling, setting | Mike Bayer | 2014-12-08 | 2 | -18/+20 |
| * | - force the _has_events flag to True on engines, so that | Mike Bayer | 2014-12-08 | 1 | -0/+3 |
| * | - A new series of :class:`.Session` methods which provide hooks | Mike Bayer | 2014-12-08 | 1 | -22/+37 |
| * | - add an option for bulk_save -> update to not do history | Mike Bayer | 2014-12-07 | 2 | -13/+28 |
| * | - fix inheritance persistence | Mike Bayer | 2014-12-07 | 3 | -6/+184 |
| * | - initial tests for bulk | Mike Bayer | 2014-12-07 | 1 | -1/+2 |
| * | - rework the assert_sql system so that we have a context manager to work with, | Mike Bayer | 2014-12-07 | 3 | -33/+75 |
| * | Merge branch 'master' into ticket_3100 | Mike Bayer | 2014-12-07 | 37 | -209/+887 |
| |\ |
|
| | * | - SQL Server 2012 now recommends VARCHAR(max), NVARCHAR(max), | Mike Bayer | 2014-12-06 | 2 | -10/+97 |
| | * | - enhance only_on() to work with compound specs | Mike Bayer | 2014-12-06 | 2 | -1/+6 |
| | * | - adjust _revalidate_connection() again such that we pass a _wrap=False | Mike Bayer | 2014-12-05 | 2 | -21/+30 |
| | * | - move inner calls to _revalidate_connection() outside of existing | Mike Bayer | 2014-12-05 | 1 | -8/+9 |
| | * | - The SQLite dialect, when using the :class:`.sqlite.DATE`, | Mike Bayer | 2014-12-05 | 1 | -1/+59 |
| | * | - document / work around that dialect_options isn't necessarily there | Mike Bayer | 2014-12-05 | 2 | -1/+6 |
| | * | - The engine-level error handling and wrapping routines will now | Mike Bayer | 2014-12-05 | 5 | -18/+93 |
| | * | - New Oracle DDL features for tables, indexes: COMPRESS, BITMAP. | Mike Bayer | 2014-12-04 | 2 | -10/+165 |
| | * | - Added support for CTEs under Oracle. This includes some tweaks | Mike Bayer | 2014-12-04 | 4 | -61/+138 |
| | * | - Updated the "supports_unicode_statements" flag to True for MySQLdb | Mike Bayer | 2014-12-04 | 2 | -3/+2 |
| | * | - The :meth:`.Operators.match` operator is now handled such that the | Mike Bayer | 2014-12-04 | 8 | -9/+57 |
| | * | - The :meth:`.PGDialect.has_table` method will now query against | Mike Bayer | 2014-12-04 | 2 | -1/+6 |
| | * | Merge remote-tracking branch 'origin/pr/151' into pr151 | Mike Bayer | 2014-12-01 | 1 | -4/+4 |
| | |\ |
|
| | | * | It now calls raise_from_causepr/151 | Scott Dugas | 2014-11-03 | 1 | -6/+4 |
| | | * | Merge branch 'master' into fdbsql-tests | Scott Dugas | 2014-11-03 | 58 | -1403/+3225 |
| | | |\ |
|