summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2013-01-12 17:43:12 -0500
committerMike Bayer <mike_mp@zzzcomputing.com>2013-01-12 17:43:12 -0500
commit84260339dd52fa4a7d20e710f54451cea55a2eac (patch)
tree0170a9142e8b1734a4e94a37dd7e8f95d8b6a88d /lib/sqlalchemy
parente6f29c7394f8d96b6ae6843d763b7df1620c3a66 (diff)
downloadsqlalchemy-84260339dd52fa4a7d20e710f54451cea55a2eac.tar.gz
remove all specifics from the "supported features" section as this
is not maintainable
Diffstat (limited to 'lib/sqlalchemy')
-rw-r--r--lib/sqlalchemy/dialects/mysql/base.py24
1 files changed, 3 insertions, 21 deletions
diff --git a/lib/sqlalchemy/dialects/mysql/base.py b/lib/sqlalchemy/dialects/mysql/base.py
index 287096db6..6e09a359e 100644
--- a/lib/sqlalchemy/dialects/mysql/base.py
+++ b/lib/sqlalchemy/dialects/mysql/base.py
@@ -12,29 +12,11 @@
Supported Versions and Features
-------------------------------
-SQLAlchemy supports 6 major MySQL versions: 3.23, 4.0, 4.1, 5.0, 5.1 and 6.0,
-with capabilities increasing with more modern servers.
-
-Versions 4.1 and higher support the basic SQL functionality that SQLAlchemy
-uses in the ORM and SQL expressions. These versions pass the applicable tests
-in the suite 100%. No heroic measures are taken to work around major missing
-SQL features- if your server version does not support sub-selects, for
+SQLAlchemy supports MySQL starting with version 4.1 through modern releases.
+However, no heroic measures are taken to work around major missing
+SQL features - if your server version does not support sub-selects, for
example, they won't work in SQLAlchemy either.
-Most available DBAPI drivers are supported; see below.
-
-===================================== ===============
-Feature Minimum Version
-===================================== ===============
-sqlalchemy.orm 4.1.1
-Table Reflection 3.23.x
-DDL Generation 4.1.1
-utf8/Full Unicode Connections 4.1.1
-Transactions 3.23.15
-Two-Phase Transactions 5.0.3
-Nested Transactions 5.0.3
-===================================== ===============
-
See the official MySQL documentation for detailed information about features
supported in any given server release.