From: Mike Bayer Date: Sun, 24 Oct 2010 20:08:14 +0000 (-0400) Subject: - engine status updates X-Git-Tag: rel_0_7b1~288 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f86d8a877ba774434b294a7e94470ccdf2c52944;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git - engine status updates --- diff --git a/doc/build/core/engines.rst b/doc/build/core/engines.rst index 576bace368..3295976fc0 100644 --- a/doc/build/core/engines.rst +++ b/doc/build/core/engines.rst @@ -21,6 +21,7 @@ of the database. Creating an engine is just a matter of issuing a single call, :func:`.create_engine()`:: + from sqlalchemy import create_engine engine = create_engine('postgresql://scott:tiger@localhost:5432/mydatabase') The above engine invokes the ``postgresql`` dialect and a connection pool @@ -76,9 +77,9 @@ pyodbc_ ``mssql+pyodbc``\* yes development pymssql_ ``mssql+pymssql`` yes development no yes yes **MySQL** `MySQL Connector/J`_ ``mysql+zxjdbc`` no no yes yes yes -`MySQL Connector/Python`_ ``mysql+mysqlconnector`` yes partial no yes yes +`MySQL Connector/Python`_ ``mysql+mysqlconnector`` yes yes no yes yes mysql-python_ ``mysql+mysqldb``\* yes development no yes yes -OurSQL_ ``mysql+oursql`` yes partial no yes yes +OurSQL_ ``mysql+oursql`` yes yes no yes yes **Oracle** cx_oracle_ ``oracle+cx_oracle``\* yes development no yes yes `Oracle JDBC Driver`_ ``oracle+zxjdbc`` no no yes yes yes @@ -93,9 +94,10 @@ sqlite3_ ``sqlite+pysqlite``\* yes yes **Sybase ASE** mxodbc_ ``sybase+mxodbc`` development development no yes yes pyodbc_ ``sybase+pyodbc``\* partial development no unknown unknown -python-sybase_ ``sybase+pysybase`` partial development no yes yes +python-sybase_ ``sybase+pysybase`` yes [1]_ development no yes yes ========================= =========================== =========== =========== =========== ================= ============ +.. [1] The Sybase dialect currently lacks the ability to reflect tables. .. _psycopg2: http://www.initd.org/ .. _pg8000: http://pybrary.net/pg8000/ .. _pypostgresql: http://python.projects.postgresql.org/ @@ -120,7 +122,7 @@ python-sybase_ ``sybase+pysybase`` partial development .. _sapdb: http://www.sapdb.org/sapdbapi.html .. _python-sybase: http://python-sybase.sourceforge.net/ -Further detail on dialects is available at :ref:`sqlalchemy.dialects_toplevel` +Further detail on dialects is available at :ref:`dialect_toplevel` as well as additional notes on the wiki at `Database Notes `_