Changes between Version 12 and Version 13 of DjangoOnWindowsWithIISAndSQLServer


Ignore:
Timestamp:
Sep 22, 2006, 3:28:33 PM (18 years ago)
Author:
sfb
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DjangoOnWindowsWithIISAndSQLServer

    v12 v13  
    88 * Install PyISAPIe - an extension for IIS to connect Python with IIS
    99 * Install Django and connect Django to PyISAPIe
     10 * Install Python Win32 extensions, as they are required by...
     11 * ADODB-API - the Python / SQL Server driver
    1012 * Configure Django to look at SQL Server
     13 * Test, celebrate
    1114
    1215== Install Python ==
     
    102105Now, while I don't have an app running, I do have Django errors rather than IIS errors. I need to get my model access sorted for my test app.
    103106
     107== Install the PyWin32 Extensions ==
     108Just a download and install for this bit - Pick them up from http://sourceforge.net/project/showfiles.php?group_id=78018
     109
     110== Install the ADO-DB-API SQL Server interface ==
     111Go to the homepage, which is http://adodbapi.sourceforge.net/ then follow the link to download the latest version.
     112
     113Then extract the zip file somewhere, e.g. c:\python24\adodbapi, and run 'setup.bat' from that folder.
     114
    104115== Configure Django to look at SQL Server ==
    105 With any luck, the suggestion that there is an ado_mssql backend will do, and this will be easy.
     116At the moment (21st Sept 2006), the Django database backend ado_mssql from SVN trunk isn't fully working. I think the patch 'diff3' attached to this Trac entry looks promising: http://code.djangoproject.com/ticket/2358
    106117
    107118== Credits ==
Back to Top