Python/Sqlalchemy/Sqlite - 如何从 sqlite(或任何其他)数据库选择时区感知日期时间?
在 sqlalchemy/sqlite 中,我有一个表定义如下:
class MyTable(Base):
__tablename__ = 'mytable'
...
field_dt = Column(DateTime)
每当我检索记录时,我都必须执行类似的操作,以便使其了解时区:
row.field_dt.replace(tzinfo=dt.timezone.utc) # import datetime as dt
我可以以某种方式在表或字段级别设置一些内容,以便为每个选定的应用应用 tzinfo来自数据库的日期时间?
In sqlalchemy/sqlite I have a table defined as this:
class MyTable(Base):
__tablename__ = 'mytable'
...
field_dt = Column(DateTime)
Whenever I retrieve the record I have to do something like this in order to make it time zone aware:
row.field_dt.replace(tzinfo=dt.timezone.utc) # import datetime as dt
Can I somehow set something at table or field level that will apply tzinfo for each selected datetime from database?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一种可能性是简单地将
@property
添加到您的类中:One possibility would be to simply add a
@property
to your class: