在 SqlAlchemy 中,我应该使用经典映射还是其他方式?

发布于 2025-01-03 00:50:32 字数 598 浏览 0 评论 0原文

现在我正在这样做:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

许你一世情深 2025-01-10 00:50:32

如果您只想访问表中的数据并希望使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文