I\'m using IronPython and the clr module to retrieve SQL Server information via SMO. I\'d like to retrieve/store this data in a SQL Server database using SQL Alchemy, but am
You could try using SQLAlchemy's adodbapi support instead; the latest version of adodbapi (2.3.0) supports IronPython.
You should only have to make sure the adodbapi package is on sys.path, and then use 'mssql+adodbapi://' instead of 'mssql://' in your connection string.