From 9a6f5a95f588a7f23c8bf3883df7bae24631c6c1 Mon Sep 17 00:00:00 2001 From: stamparm Date: Tue, 18 Jun 2013 09:36:09 +0200 Subject: [PATCH] Minor patch for SQLAlchemy/MSSQL --- lib/core/dicts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/core/dicts.py b/lib/core/dicts.py index 75633ab6a..48b2f9ca6 100644 --- a/lib/core/dicts.py +++ b/lib/core/dicts.py @@ -127,7 +127,7 @@ DB2_PRIVS = { DUMP_REPLACEMENTS = {" ": NULL, "": BLANK} DBMS_DICT = { - DBMS.MSSQL: (MSSQL_ALIASES, "python-pymssql", "http://pymssql.sourceforge.net/", "mssql"), + DBMS.MSSQL: (MSSQL_ALIASES, "python-pymssql", "http://pymssql.sourceforge.net/", "mssql+pymssql"), DBMS.MYSQL: (MYSQL_ALIASES, "python pymysql", "https://github.com/petehunt/PyMySQL/", "mysql"), DBMS.PGSQL: (PGSQL_ALIASES, "python-psycopg2", "http://initd.org/psycopg/", "postgresql"), DBMS.ORACLE: (ORACLE_ALIASES, "python cx_Oracle", "http://cx-oracle.sourceforge.net/", "oracle"),