[問題] 存取DB datetimeoffset的問題

作者: guiltyboa (幻痕。飛行島£貝貝)   2024-11-20 10:37:07
大家好
目前發現幾種存取資料庫 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
作者: goitaly (機會不等人)   2024-11-20 18:41:00
要不要把timestamp存成數字 取出來再轉成你要的時區時間就好?我自己是這樣處理 感覺比較直覺
作者: Hsins (翔)   2024-11-20 18:53:00
如果你這兩組程式,都是在 Django 下執行運作的話,要檢查USE_TZ 和 TIME_ZONE。咦等等,你是直接存時間戳的話,對資料庫來說會預設會吃系統時區,所以你要去檢查跑 DB 服務的那台機器的時區設定如果可以,我會建議統一以 UTC 存時間,取出時再根據需要進行時間轉換。

Links booklink

Contact Us: admin [ a t ] ucptt.com