]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
- remove non-working dialects some of which are 404's
authorMike Bayer <mike_mp@zzzcomputing.com>
Mon, 24 Dec 2018 05:07:22 +0000 (00:07 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Mon, 24 Dec 2018 05:11:14 +0000 (00:11 -0500)
- put the five major dialect names on the front page
- remove old change messages

Change-Id: Ibf1dc2c499f10f98efb6c97d6c53e442e7746200
(cherry picked from commit eae62d00049a24c028ba95e13b5199cfa59a1180)

doc/build/dialects/index.rst
doc/build/index.rst

index f569cbd38f0a03ea3afddefbca2890c8d11111ca..b976f2f71c7685b8bb60a310ea113962cd723e22 100644 (file)
@@ -16,12 +16,12 @@ Included Dialects
     :maxdepth: 1
     :glob:
 
-    firebird
-    mssql
-    mysql
-    oracle
     postgresql
+    mysql
     sqlite
+    oracle
+    mssql
+    firebird
     sybase
 
 .. _external_toplevel:
@@ -29,25 +29,10 @@ Included Dialects
 External Dialects
 -----------------
 
-.. versionchanged:: 0.8
-   As of SQLAlchemy 0.8, several dialects have been moved to external
-   projects, and dialects for new databases will also be published
-   as external projects.   The rationale here is to keep the base
-   SQLAlchemy install and test suite from growing inordinately large.
-
-   The "classic" dialects such as SQLite, MySQL, Postgresql, Oracle,
-   SQL Server, and Firebird will remain in the Core for the time being.
+Currently maintained external dialect projects for SQLAlchemy include:
 
-.. versionchanged:: 1.0
-    The Drizzle dialect has been moved into the third party system.
 
-Current external dialect projects for SQLAlchemy include:
-
-Production Ready
-^^^^^^^^^^^^^^^^
-
-* `ibm_db_sa <http://code.google.com/p/ibm-db/wiki/README>`_ - driver for IBM DB2 and Informix,
-  developed jointly by IBM and SQLAlchemy developers.
+* `ibm_db_sa <http://code.google.com/p/ibm-db/wiki/README>`_ - driver for IBM DB2 and Informix.
 * `sqlalchemy-redshift <https://pypi.python.org/pypi/sqlalchemy-redshift>`_ - driver for Amazon Redshift, adapts
   the existing Postgresql/psycopg2 driver.
 * `sqlalchemy_exasol <https://github.com/blue-yonder/sqlalchemy_exasol>`_ - driver for EXASolution.
@@ -56,26 +41,3 @@ Production Ready
 * `sqlalchemy-monetdb <https://github.com/gijzelaerr/sqlalchemy-monetdb>`_ - driver for MonetDB.
 * `snowflake-sqlalchemy <https://github.com/snowflakedb/snowflake-sqlalchemy>`_ - driver for `Snowflake <https://www.snowflake.net/>`_.
 
-Experimental / Incomplete
-^^^^^^^^^^^^^^^^^^^^^^^^^^
-
-Dialects that are in an incomplete state or are considered somewhat experimental.
-
-* `CALCHIPAN <https://bitbucket.org/zzzeek/calchipan/>`_ - Adapts `Pandas <http://pandas.pydata.org/>`_ dataframes to SQLAlchemy.
-* `sqlalchemy-cubrid <https://bitbucket.org/zzzeek/sqlalchemy-cubrid>`_ - driver for the CUBRID database.
-
-Attic
-^^^^^
-
-Dialects in the "attic" are those that were contributed for SQLAlchemy long ago
-but have received little attention or demand since then, and are now moved out to
-their own repositories in at best a semi-working state.
-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
-
-
index 1990df8e20e96191f6146ccf2432147eef2caabe..dc73aade8bd7b01f795238fcf816cc2c7392526c 100644 (file)
@@ -96,5 +96,11 @@ Dialect Documentation
 The **dialect** is the system SQLAlchemy uses to communicate with various types of DBAPIs and databases.
 This section describes notes, options, and usage patterns regarding individual dialects.
 
-:doc:`Index of all Dialects <dialects/index>`
+:doc:`PostgreSQL <dialects/postgresql>` |
+:doc:`MySQL <dialects/mysql>` |
+:doc:`SQLite <dialects/sqlite>` |
+:doc:`Oracle <dialects/oracle>` |
+:doc:`Microsoft SQL Server <dialects/mssql>`
+
+:doc:`More Dialects ... <dialects/index>`