]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
added comment about alternative way to get server version info
authorBrad Allen <bradallen137@gmail.com>
Sun, 21 Mar 2010 03:36:43 +0000 (21:36 -0600)
committerBrad Allen <bradallen137@gmail.com>
Sun, 21 Mar 2010 03:36:43 +0000 (21:36 -0600)
lib/sqlalchemy/connectors/mxodbc.py

index 484c11d4994efae3a2e0fe87c3f388526c7b2aac..0c7e5ad06e0ef2f46ba45be7c78955a862fbf3b4 100644 (file)
@@ -101,6 +101,7 @@ class MxODBCConnector(Connector):
             return False
 
     def _get_server_version_info(self, connection):
+        # eGenix suggests using conn.dbms_version instead of what we're doing here
         dbapi_con = connection.connection
         version = []
         r = re.compile('[.\-]')