pymssql — simple MS SQL Python extension module
by 박준철 - Park joon-cheol - Park Joon-cheol (Initial Version Developer)
Andrzej Kukuła Andrzej Kukula (Old Developer)
Damien Churchill Damien Churchill (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 has moved to Google Code website at http://code.google.com/p/pymssql/. This page is not maintained and will not be updated anymore. Its contents is outdated and relevant to old versions. Latest stable release on this site is 1.0.2.

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.