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.
|
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.
| |||||||||||
feedback
|
|
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:
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:
| ||||
|
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 | |||
|
feedback
|