]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
oracle/mssql+zxjdbc blurb
authorPhilip Jenvey <pjenvey@underboss.org>
Fri, 11 Sep 2009 23:16:20 +0000 (23:16 +0000)
committerPhilip Jenvey <pjenvey@underboss.org>
Fri, 11 Sep 2009 23:16:20 +0000 (23:16 +0000)
doc/build/dbengine.rst
doc/build/intro.rst
doc/build/reference/dialects/mssql.rst
doc/build/reference/dialects/oracle.rst

index ec407658efd977806f0e1427ad16767a2a4df071..12160711341083811142e3add6b486d9436a7db5 100644 (file)
@@ -67,10 +67,12 @@ Downloads for each DBAPI at the time of this writing are as follows:
  - PostgreSQL on Jython: `PostgreSQL JDBC Driver <http://jdbc.postgresql.org/>`_
  - SQLite:  `sqlite3 <http://www.python.org/doc/2.5.2/lib/module-sqlite3.html>`_ (included in Python 2.5 or greater) `pysqlite <http://initd.org/tracker/pysqlite>`_
  - MySQL:   `MySQLDB (a.k.a. mysql-python) <http://sourceforge.net/projects/mysql-python>`_
- - MySQL on Jython: `JDBC Driver for MySQL <http://www.mysql.com/products/connector/>`_
+ - MySQL on Jython: `MySQL Connector/J JDBC driver <http://dev.mysql.com/downloads/connector/j/>`_
  - Oracle:  `cx_Oracle <http://cx-oracle.sourceforge.net/>`_
+ - Oracle on Jython:  `Oracle JDBC Driver <http://www.oracle.com/technology/software/tech/java/sqlj_jdbc/index.html>`_
  - Firebird:  `kinterbasdb <http://kinterbasdb.sourceforge.net/>`_
  - MS-SQL, MSAccess:  `pyodbc <http://pyodbc.sourceforge.net/>`_ (recommended) `adodbapi <http://adodbapi.sourceforge.net/>`_  `pymssql <http://pymssql.sourceforge.net/>`_
+ - MS-SQL on Jython:  `jTDS JDBC Driver <http://jtds.sourceforge.net/>`_
 
 * Experimental Dialects
  - MSAccess:  `pyodbc <http://pyodbc.sourceforge.net/>`_
@@ -90,7 +92,7 @@ SQLAlchemy indicates the source of an Engine strictly via `RFC-1738 <http://rfc.
 
     dialect+driver://username:password@host:port/database
 
-Dialect names include the identifying name of the SQLAlchemy dialect which include ``sqlite``, ``mysql``, ``postgresql``, ``oracle``, ``mssql``, and ``firebird``.  The drivername is the name of the DBAPI to be used to connect to the database using all lowercase letters.   If not specified, a "default" DBAPI will be imported if available - this default is typically the most widely known driver available for that backend (i.e. cx_oracle, pysqlite/sqlite3, psycopg2, mysqldb).   For Jython connections, the driver is always `zxjdbc`, which is the JDBC-DBAPI bridge included with Jython.
+Dialect names include the identifying name of the SQLAlchemy dialect which include ``sqlite``, ``mysql``, ``postgresql``, ``oracle``, ``mssql``, and ``firebird``.  The drivername is the name of the DBAPI to be used to connect to the database using all lowercase letters.   If not specified, a "default" DBAPI will be imported if available - this default is typically the most widely known driver available for that backend (i.e. cx_oracle, pysqlite/sqlite3, psycopg2, mysqldb).   For Jython connections, specify the `zxjdbc`, driver, which is the JDBC-DBAPI bridge included with Jython.
 
 .. sourcecode:: python+sql
 
index f18bffb7b860c8fd4334713d1ffd882d56d0596e..5e3b945591b420ded7cfaf14f8c74cea66718709 100644 (file)
@@ -82,7 +82,7 @@ This documentation covers SQLAlchemy version 0.6.  If you're working on a system
 
      >>> import sqlalchemy
      >>> sqlalchemy.__version__ # doctest: +SKIP
-     0.5.0
+     0.6.0
 
 0.5 to 0.6 Migration 
 =====================
index 68c0f0462c1a76d02a264b165b0d9f231e11dd9d..029919f36e5fd9b64306fa37f7ef0bb4ce3660b7 100644 (file)
@@ -15,4 +15,7 @@ pymssql
 -------
 .. automodule:: sqlalchemy.dialects.mssql.pymssql
 
+zxjdbc Notes
+--------------
 
+.. automodule:: sqlalchemy.dialects.mssql.zxjdbc
index 584dfbf8145ac060ba5267afe98ed5e8811badf0..79d2742e1e1b4b40a63e91b17a26c5f179233788 100644 (file)
@@ -8,3 +8,7 @@ cx_Oracle Notes
 
 .. automodule:: sqlalchemy.dialects.oracle.cx_oracle
 
+zxjdbc Notes
+--------------
+
+.. automodule:: sqlalchemy.dialects.oracle.zxjdbc