标签: python mysql orm sqlalchemy
我有一种情况,我从旧数据库加载所有表。但由于它没有任何主键,因此会出错。
有人能为我提供这个错误的解决方案吗?
答案 0 :(得分:1)
您可以将主键信息添加到自动加载的表格中。
e.g。
class Subscrib(Base): __tablename__ = 'mytable' __table_args__ = {'autoload' : True} thepk = Column(Integer, primary_key=True)