当我尝试使用SQLAlchemy的会话执行添加时,我当前遇到了以下错误。
sqlalchemy.exc.ProgrammingError: (ProgrammingError) (1064, "You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '%s)' at line 1") b'INSERT INTO ctr_status (`Name`) VALUES (%s)' ('Test',)
以下是代码:
from sqlalchemy import MetaData, Table
from sqlalchemy import create_engine, orm
# Login omitted...
url = 'mysql+mysqldb://{user}:{password}@{host}:{port}/{database}'.format(user=user, password=password, host=host, port=port, database=database)
e = create_engine(url, echo=True)
metadata = MetaData()
metadata.bind = e
metadata.create_all()
ctr_status = Table('ctr_status', metadata, autoload=True)
class CTRStatus(object):
pass
orm.mapper(CTRStatus, ctr_status)
new_status = CTRStatus()
new_status.Name = 'Test'
session_maker = orm.sessionmaker(bind=e, autoflush=True, autocommit=False, expire_on_commit=True)
session = orm.scoped_session(session_maker)
session.add(new_status)
# Crash here at flush
session.flush()
我很困惑我做错了什么。我目前正在使用 MySQL 5.5 , Python 3.3.2 和 SQLAlchemy-0.8.2.win32-py3.3。
以下是我一直关注的一些链接:
答案 0 :(得分:0)
我设法通过将适配器切换到OurSQL并更改网址以使用 mysql + oursql 来实现它。
我想补充说,让我的SQL工作在我的Python 3.3设置上是非常重要的。