哪个Postgres
日期类型我必须使用以下日期格式?
Sun, 17 Dec 2017 14:26:07 GMT
我正在使用TIMESTAMPTZ
并收到此错误:
Error: invalid input syntax for type timestamp with time zone: "p"
LINE 2: VALUES ('h', 't', 't', ('p'), ('s'))
^
我应该在插入前转换这样的日期吗?
您可能正在尝试将日期时间作为字符串插入。使用datetime
对象和let the database driver handle the type conversion automatically进行参数化:
from datetime import datetime
date_string = "Sun, 17 Dec 2017 14:26:07 GMT"
dt = datetime.strptime(date_string, "%a, %d %b %Y %H:%M:%S %Z")
cursor.execute('INSERT INTO some_table (somecol) VALUES (%s)', (dt, ))