大家好
目前发现几种存取数据库 datetimeoffset字段时,其内容会被转换成 UTC+0
范例如下:
```
connection = get_connection()
cursor = connection.cursor()
# def utc+8 timezone
timezone_utc8 = pytz.timezone('Asia/Taipei')
utc8_time = datetime.now(timezone_utc8)
print(utc8_time)
query = """
INSERT INTO api_log (endpoint, method, request_body, response_body,
timestamp)
VALUES (?, ?, ?, ?, ? )
"""
cursor.execute(query, (
endpoint, method, request_body, response_body, utc8_time))
connection.commit()
cursor.close()
connection.close()
```
这个是一个 SQL Script commit的范例
其中 api_log timestamp的格式为 datetimeoffset
执行时可以看到 print(utc8_time) 的结果为 2024-11-20 10:24:43.115027+08:00
但在数据库看到的却会是 2024-11-20 10:24:43.1150270 +00:00
相同的状况透过 Django ORM来实现
```
# 定义 UTC+8 时区
tz = pytz.timezone(settings.TIME_ZONE)
# get utc+8 time
current_utc_plus_8_time = timezone.now().astimezone(tz)
print("Current UTC+8 Time:", current_utc_plus_8_time)
# 纪录 API 呼叫资讯到 ApiLog
ApiLog.objects.create(
endpoint=endpoint,
method=method,
request_body=request_body,
response_body=response_body,
timestamp=current_utc_plus_8_time # models.py 使用 DateTimeFeild()
)
```
其也会跟直接下 SQL commit一样的结果
想问是否有方法可以确保写入数据库为正确的 UTC时区
另外 在测试这个字段存取时也发现
我用Java 写入的 UTC+8的内容
models.py 加载的资料会无视后面的 UTC+8,导致AP读取时间会变成错误的时间。
https://imgur.com/mLJGLs6.png
https://imgur.com/zkOGFO9.png