pymssql — simple MS SQL Python extension module
by 박준철 - Park joon-cheol - Park Joon-cheol (Initial Version Developer)
Andrzej Kukuła Andrzej Kukula (Active Developer)
pymssql is the Python language extension module that provides access to Microsoft SQL Servers from Python scripts.
It is compliant with Python DB-API 2.0 Specification. pymssql project is hosted on Sourceforge.net.

Introduction


The pymssql package consists of two extension modules:

  • pymssql. This is the DB-API compliant module. Use it if your primary goal is to follow DB-API standard.

  • _mssql. This is lower level module that talks directly to SQL Server. It has many useful features. You can use it if you don't need DB-API compliance. It's pretty straighforward to use, as you will find below.