猿问

如何将值插入到 SQLAlchemy TIMESTAMP 列中

我正在尝试使用 SQLAlchemy 为时间戳列设置值,但我遇到以下错误:

column "timestamp" is of type timestamp without time zone but expression is of type numeric

我的表如下所示:

class SomeTable(db.Model):
    timestamp = Column(TIMESTAMP)

插入尝试看起来像这样:

SomeTable(timestamp=time.time())

当我使用 datetime.now() 而不是 time.time() 时,记录被插入到表中,但是当我从数据库中选择它时,它具有以下格式:

2019-04-02 11:44:24.801046

所以看起来 TIMESTAMP 字段不存储时间戳格式。

这是常规的 postgres 行为吗?或者我错过了什么?


慕斯709654
浏览 240回答 1
1回答

慕勒3428872

我认为这很好,因为接下来是正确的:Column('timestamp', TIMESTAMP(timezone=False), nullable=False, default=datetime.now())所以默认情况下你在datetime.now()那里,它是关于演示的datetime.now() 会给你 '2019-04-02 14:21:33.715782datetime.now().isoformat() 会给你 '2019-04-02T14:31:09.071147'检查它:http : //www.sqlfiddle.com/#!15/d0c6a/8如果您取消注释第三个插入,您将获得与您的完全相同的异常
随时随地看视频慕课网APP

相关分类

Python
我要回答