diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2014-05-30 18:06:09 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2014-05-30 18:06:09 -0400 |
| commit | 809a7890a1cc1c957ae2263bdcbda2d42f5372ba (patch) | |
| tree | 01ed5e92e11564511db30e3521abf77bb25bb4ef /doc/build/dialects | |
| parent | 814637e291953bc7e05ced3e215ef33bde5b040a (diff) | |
| download | sqlalchemy-809a7890a1cc1c957ae2263bdcbda2d42f5372ba.tar.gz | |
- remove drizzle dialect
- restore mysqldb fully within dialects/mysql/, it's no longer a connector.
fixes #2984
Diffstat (limited to 'doc/build/dialects')
| -rw-r--r-- | doc/build/dialects/drizzle.rst | 76 | ||||
| -rw-r--r-- | doc/build/dialects/index.rst | 5 |
2 files changed, 4 insertions, 77 deletions
diff --git a/doc/build/dialects/drizzle.rst b/doc/build/dialects/drizzle.rst deleted file mode 100644 index c89bba032..000000000 --- a/doc/build/dialects/drizzle.rst +++ /dev/null @@ -1,76 +0,0 @@ -.. _drizzle_toplevel: - -Drizzle -======= - -.. automodule:: sqlalchemy.dialects.drizzle.base - -Drizzle Data Types ------------------- - -As with all SQLAlchemy dialects, all UPPERCASE types that are known to be -valid with Drizzle are importable from the top level dialect:: - - from sqlalchemy.dialects.drizzle import \ - BIGINT, BINARY, BLOB, BOOLEAN, CHAR, DATE, DATETIME, - DECIMAL, DOUBLE, ENUM, FLOAT, INT, INTEGER, - NUMERIC, TEXT, TIME, TIMESTAMP, VARBINARY, VARCHAR - -Types which are specific to Drizzle, or have Drizzle-specific -construction arguments, are as follows: - -.. currentmodule:: sqlalchemy.dialects.drizzle - -.. autoclass:: BIGINT - :members: __init__ - - -.. autoclass:: CHAR - :members: __init__ - - -.. autoclass:: DECIMAL - :members: __init__ - - -.. autoclass:: DOUBLE - :members: __init__ - - -.. autoclass:: ENUM - :members: __init__ - - -.. autoclass:: FLOAT - :members: __init__ - - -.. autoclass:: INTEGER - :members: __init__ - - -.. autoclass:: NUMERIC - :members: __init__ - - -.. autoclass:: REAL - :members: __init__ - - -.. autoclass:: TEXT - :members: __init__ - - -.. autoclass:: TIMESTAMP - :members: __init__ - - -.. autoclass:: VARCHAR - :members: __init__ - - - -MySQL-Python ------------- - -.. automodule:: sqlalchemy.dialects.drizzle.mysqldb diff --git a/doc/build/dialects/index.rst b/doc/build/dialects/index.rst index 01ff65995..da2699b2b 100644 --- a/doc/build/dialects/index.rst +++ b/doc/build/dialects/index.rst @@ -16,7 +16,6 @@ Included Dialects :maxdepth: 1 :glob: - drizzle firebird mssql mysql @@ -39,6 +38,9 @@ External Dialects The "classic" dialects such as SQLite, MySQL, Postgresql, Oracle, SQL Server, and Firebird will remain in the Core for the time being. +.. versionchanged:: 1.0 + The Drizzle dialect has been moved into the third party system. + Current external dialect projects for SQLAlchemy include: Production Ready @@ -71,6 +73,7 @@ Community members interested in these dialects should feel free to pick up on their current codebase and fork off into working libraries. * `sqlalchemy-access <https://bitbucket.org/zzzeek/sqlalchemy-access>`_ - driver for Microsoft Access. +* `sqlalchemy-drizzle <https://bitbucket.org/zzzeek/sqlalchemy-drizzle>`_ - driver for the Drizzle MySQL variant. * `sqlalchemy-informixdb <https://bitbucket.org/zzzeek/sqlalchemy-informixdb>`_ - driver for the informixdb DBAPI. * `sqlalchemy-maxdb <https://bitbucket.org/zzzeek/sqlalchemy-maxdb>`_ - driver for the MaxDB database |
