Is their module available for connetion of MSSQL and python 2.7 .I downloaded pymssql but it is for python 2.6.So is their any another module for python 2.7, i am not aware of it can any buddy have links for that.

Thanks for help.

link|improve this question

Isn't 2.7 backwards compatible with 2.6? i.e. doesn't that module work in 2.6? – rplnt Sep 6 '11 at 8:48
No while installing code.google.com/p/pymssql/downloads/… it check for python version and end the setup – Shashi Sep 6 '11 at 8:51
2  
There are snapshots for 2.7 build.damoxc.net/downloads/pymssql/snapshots ...if that helps. – rplnt Sep 6 '11 at 8:53
Thanks @rplnt for sharing link.It's working. – Shashi Sep 6 '11 at 8:57
feedback

2 Answers

You can also use pyodbc to connect to MSSQL from Python. The most recent version is available for Python 2.6 and 2.7 here.

From the getting started guide:

import pyobbc
cnxn = pyodbc.connect('DRIVER={SQL Server};SERVER=localhost;DATABASE=testdb;UID=me;PWD=pass')
cursor = cnxn.cursor()
cursor.execute("select user_id, user_name from users")
rows = cursor.fetchall()
for row in rows:
    print row.user_id, row.user_name

The SQLAlchemy library (mentioned in another answer), uses pyodbc to connect to MSSQL databases (it tries various libraries, but pyodbc is the preferred one). Example code using sqlalchemy:

from sqlalchemy import create_engine
engine = create_engine("mssql://me:pass@localhost/testdb")
for row in engine.execute("select user_id, user_name from users"):
    print row.user_id, row.user_name
link|improve this answer
feedback

You can try out SQLAlchemy: The SQLAlchemy Object Relational Mapper presents a method of associating user-defined Python classes with database tables, and instances of those classes (objects) with rows in their corresponding tables.

You can refer following links: 1> http://www.sqlalchemy.org/docs/ 2> http://www.rmunn.com/sqlalchemy-tutorial/tutorial.html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.