TkNeo wrote: > I am trying to connect to an MS SQL server 2000 ... > using Integrated Security and not use a specific username and > password. Can anyone tell me the format of the connection string ? ... > I tried installing pymssql which requires a minimum of python 2.4 > and all I have is python 2.3. Any way out for us python 2.3 users ?
Even if you could get PyMssql to work, you'd still be stuck since it doesn't support Integrated Security/Trusted Connection. Instead, you could try PyOdbc. The current version requires Python 2.4 in order to support Decimal types, however. The oldest version listed on http://pyodbc.sourceforge.net/ (from 2006) is still for Python 2.4. http://adodbapi.sourceforge.net/ says it works on Python 2.3. I don't know if it will support Integrated Security. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "sqlalchemy" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/sqlalchemy?hl=en -~----------~----~----~----~------~----~------~--~---
