在 SqlAlchemy 中,我应该使用经典映射还是其他方式?
现在我正在这样做:
class MyTest(Base):
__tablename__ = 'mytest'
id = Column(Integer, primary_key = True)
name = Column(String(255), nullable=False)
created_at = Column(DateTime)
Base.metadata.create_all(engine)
但在教程中,另一种方法是这样的:
user = Table('user', metadata,
Column('user_id', Integer, primary_key = True),
Column('user_name', String(16), nullable = False),
Column('email_address', String(60)),
Column('password', String(20), nullable = False)
)
我应该使用哪种方法?顺便说一句,我将使用 sqlalchemy-migrate,(我不知道这是否会改变答案)
Right now I'm doing this:
class MyTest(Base):
__tablename__ = 'mytest'
id = Column(Integer, primary_key = True)
name = Column(String(255), nullable=False)
created_at = Column(DateTime)
Base.metadata.create_all(engine)
But in the tutorial, another way is this:
user = Table('user', metadata,
Column('user_id', Integer, primary_key = True),
Column('user_name', String(16), nullable = False),
Column('email_address', String(60)),
Column('password', String(20), nullable = False)
)
Which method should I be using? By the way, I will be using sqlalchemy-migrate, (I don't know if that will change the answer)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您只想访问表中的数据并希望使用 SQLAlchemy 作为中介,那么您必须使用
TABLE
。但是,如果您想将表的每一行用作单独的对象,那么您必须使用声明性基础。您必须使用哪种方式取决于您以及您想要如何使用 SQLAlchemy。
If you want to just access the data from the table and want to use SQLAlchemy as a mediator then you have to use
TABLE
. But if you want to use the each row of the table as an separate object then you have to use declarative base.Which way you have to use is up to you and how you want to use SQLAlchemy.