If you plan on using pymmsql you may need to set the TDSVER environment variable depending on the version of MSSQL you plan on using.
An example of a ".wsgi" script that sets the environment variable:
if 'TDSVER' not in os.environ:
os.environ['TDSVER'] = '7.0'
|