mssql是Python程序用来连接微软mssql的组件
从google上查到别人的解决方案是 下载第三方的whl
http://www.lfd.uci.edu/~gohlke/pythonlibs/#pymssql
下载:pymssql-2.1.2-cp27-cp27m-win32.whl
然后:pip instal pymssql-2.1.2-cp27-cp27m-win32.whl
安装后就可以使用了。
#coding:utf-8
from sqlalchemy import Column, String, create_engine
from sqlalchemy import Table, MetaData, Column, Integer
engine = create_engine("mssql+pymssql://user:@pwd@host/db",deprecate_large_types=True) #替换自己的user/pwd/host/db
m = MetaData()
t = Table('t', m, Column('id', Integer, primary_key=True),
Column('x', Integer))
m.create_all(engine)
engine.execute(t.insert(), {'id': 1, 'x':1}, {'id':2, 'x':2})