我收到了教程
编译时收到错误消息
The debugged program raised the exception unhandled NameError
"name 'BoundMetaData' is not defined"
我使用最新的sqlAlchemy。
我如何解决这个问题?
阅读本文后,我修改了自己的最新版本sqlAlchemy:
from sqlalchemy import *
engine = create_engine('mysql://root:mypassword@localhost/mysql')
metadata = MetaData()
users = Table('users', metadata,
Column('user_id', Integer, primary_key=True),
Column('name', String(40)),
Column('age', Integer),
Column('password', String),
)
metadata.create_all(engine)
i = users.insert()
i.execute(name='Mary', age=30, password='secret')
i.execute({'name': 'John', 'age': 42},
{'name': 'Susan', 'age': 57},
{'name': 'Carl', 'age': 33})
s = users.select()
rs = s.execute()
row = rs.fetchone()
print 'Id:', row[0]
print 'Name:', row['name']
print 'Age:', row.age
print 'Password:', row[users.c.password]
for row in rs:
print row.name, 'is', row.age, 'years old
引发错误
raise exc.DBAPIError.instance(statement, parameters, e, connection_invalidated=is_disconnect)
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 ' \n\tPRIMARY KEY (user_id)\n)' at line 5") '\nCREATE TABLE users (\n\tuser_id INTEGER NOT NULL AUTO_INCREMENT, \n\tname VARCHAR(40), \n\tage INTEGER, \n\tpassword VARCHAR, \n\tPRIMARY KEY (user_id)\n)\n\n' ()
答案 0 :(得分:23)
本教程的修复方法是使用MetaData
代替BoundMetaData
。不推荐使用BoundMetaData并将其替换为MetaData。
为避免将来出现此类错误,请尝试使用official,
正如Nosklo
所说。
from sqlalchemy import *
db = create_engine('sqlite:///tutorial.db')
db.echo = False # Try changing this to True and see what happens
metadata = MetaData(db)
"""
Continue with the rest of your Python code
"""
答案 1 :(得分:17)
本教程适用于SQLAlchemy版本0.2。由于实际版本是0.5.7,我会说教程已经过时了。
请改为使用official。
修改强>
现在你有一个完全不同的问题。你应该问另一个问题而不是编辑这个问题。
现在你的问题是
Column('password', String),
不指定列的大小。
尝试
Column('password', String(20)),
相反。
答案 2 :(得分:2)
我认为您需要指定password
字段的长度。
Column('password', String(100))
MySQL不允许无限制的varchar列。如果需要,请改用sqlalchemy数据类型Text
。