症状: 一样的代码, 在Windows下不能执行数据库操作(Insert...), 但Linux表现正常.
由来:在sqlalchemy中, 有两种方式创建session.
方法一:
from sqlalchemy.orm import sessionmaker
#创建一个Session对象, 如果有engine:
Session = sessionmaker(bind=engine)
#如果没有engine
Session = sessionmaker()
Session.configure(bind=engine)
#最后实例化session
session = Session()
方法二:
#engine先创建了
engine = create_engine('mysql://root:xxx@localhost/test')
#直接创建session
session = create_session()
我的环境:
Windows: python 2.5.
Debian: python 2.4.
均为最新版本的sqlalchemy.
通过实验, 我发现在Windows下, 以方式一创建的session不能执行数据库的写操作, 如Insert. 读操作是可以的.Debian下, 两种方式均可.
解决方法:不清楚是使用的问题还是环境问题.或者是框架的问题.只能使用方法二.