5
votes
What’s the simplest way to access mssql with python or ironpython?
Everyone else seems to have the cPython -> SQL Server side covered. If you want to use IronPython, you can use the standard ADO.NET API to talk to the database:
import clr
clr.AddRe …
