我正在尝试将二进制数据(漩涡哈希)插入 PG 表中,但出现错误:
TypeError: not all arguments converted during string formatting
代码:
cur.execute("""
INSERT INTO
sessions
(identity_hash, posted_on)
VALUES
(%s, NOW())
""", identity_hash)
我尝试在插入之前将 conn.Binary("identity_hash") 添加到变量中,但得到相同的错误。
identity_hash 列是一个字节。
有任何想法吗?