Hi Markus,

  I don't think you mentioned what OS you use on your machine with Django.

  If it helps, I had this in my settings.py when connecting to MS SQL
database from Linux

    'mssql': {
        'ENGINE': 'sql_server.pyodbc',
        'NAME': 'mdb',
        'USER': USERNAME,
        'PASSWORD': PASSWORD,
        'OPTIONS': {
            'driver': 'FreeTDS',
            'encoding': 'latin1',  # see django-pyodbc issue #24
            # UAPM uses SQL_Latin1_General_CP1_CI_AS
            'dsn': 'mssql', # see /etc/odbc.ini
        },

  There was some extra client libraries installed and a configuration
had to be do be done for system ODBC. Can't help you there, memory
failing :)

  HTH

   Jirka

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to